diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-02-15 00:45:59 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-02-15 00:50:46 +0300 |
commit | eaae55dac6b64c0616046436b294e69fc5311581 (patch) | |
tree | 3d43cd10661ee35d7feaed84e6aa77595d476523 /sound/usb/caiaq/midi.c | |
parent | 5e5677f239ba69fc718ec9a87ac4ba035dafe2c0 (diff) | |
download | linux-eaae55dac6b64c0616046436b294e69fc5311581.tar.xz |
ALSA: caiaq - Fix possible string-buffer overflow
Use strlcpy() to assure not to overflow the string array sizes by
too long USB device name string.
Reported-by: Rafa <rafa@mwrinfosecurity.com>
Cc: stable <stable@kernel.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/caiaq/midi.c')
-rw-r--r-- | sound/usb/caiaq/midi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/caiaq/midi.c b/sound/usb/caiaq/midi.c index 2f218c77fff2..a1a47088fd0c 100644 --- a/sound/usb/caiaq/midi.c +++ b/sound/usb/caiaq/midi.c @@ -136,7 +136,7 @@ int snd_usb_caiaq_midi_init(struct snd_usb_caiaqdev *device) if (ret < 0) return ret; - strcpy(rmidi->name, device->product_name); + strlcpy(rmidi->name, device->product_name, sizeof(rmidi->name)); rmidi->info_flags = SNDRV_RAWMIDI_INFO_DUPLEX; rmidi->private_data = device; |