1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-19 21:37:37 +03:00
openwrt-xburst/target/linux/generic-2.4/patches/222-sound.patch
2008-01-06 19:28:07 +00:00

29 lines
1.2 KiB
Diff

Index: linux-2.4.35.4/drivers/sound/sound_core.c
===================================================================
--- linux-2.4.35.4.orig/drivers/sound/sound_core.c 2007-12-15 05:19:38.946640480 +0100
+++ linux-2.4.35.4/drivers/sound/sound_core.c 2007-12-15 05:20:01.199908622 +0100
@@ -174,9 +174,9 @@
}
if (r == low)
- sprintf (name_buf, "%s", name);
+ snprintf (name_buf, sizeof(name_buf), "%s", name);
else
- sprintf (name_buf, "%s%d", name, (r - low) / SOUND_STEP);
+ snprintf (name_buf, sizeof(name_buf), "%s%d", name, (r - low) / SOUND_STEP);
s->de = devfs_register (devfs_handle, name_buf,
DEVFS_FL_NONE, SOUND_MAJOR, s->unit_minor,
S_IFCHR | mode, fops, NULL);
@@ -507,9 +507,9 @@
* ALSA toplevel modules for soundcards, thus we need
* load them at first. [Jaroslav Kysela <perex@jcu.cz>]
*/
- sprintf(mod, "sound-slot-%i", unit>>4);
+ snprintf(mod, sizeof(mod), "sound-slot-%i", unit>>4);
request_module(mod);
- sprintf(mod, "sound-service-%i-%i", unit>>4, chain);
+ snprintf(mod, sizeof(mod), "sound-service-%i-%i", unit>>4, chain);
request_module(mod);
spin_lock(&sound_loader_lock);
s = __look_for_unit(chain, unit);