[alsa-devel] [PATCH 3/5] ALSA: snd_usb_caiaq: use strncpy
Daniel Mack
daniel at caiaq.de
Sat May 30 22:25:21 CEST 2009
Signed-off-by: Daniel Mack <daniel at caiaq.de>
---
sound/usb/caiaq/device.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sound/usb/caiaq/device.c b/sound/usb/caiaq/device.c
index 4756b48..d55724a 100644
--- a/sound/usb/caiaq/device.c
+++ b/sound/usb/caiaq/device.c
@@ -432,8 +432,8 @@ static int __devinit init_card(struct snd_usb_caiaqdev *dev)
if (c)
*c = '\0';
- strcpy(card->driver, MODNAME);
- strcpy(card->shortname, dev->product_name);
+ strncpy(card->driver, MODNAME, sizeof(card->driver));
+ strncpy(card->shortname, dev->product_name, sizeof(card->shortname));
/* replace ' ' with '_' in device shortname */
for (c = card->shortname; *c; c++)
--
1.6.3.1
More information about the Alsa-devel
mailing list