aboutsummaryrefslogtreecommitdiffstats
path: root/sound/usb/usbmixer.c
diff options
context:
space:
mode:
authorJesper Juhl <jesper.juhl@gmail.com>2006-03-20 05:27:13 -0500
committerJaroslav Kysela <perex@suse.cz>2006-03-22 04:39:28 -0500
commit878b4789196e3cd470f843854b6b09d963214659 (patch)
tree188c0aa202335575675ca4788c411e07b87c747e /sound/usb/usbmixer.c
parentd61975fc6b40dadd2cd61fc9535499c7d7b806de (diff)
[ALSA] fix resource leak in usbmixer
Modules: USB generic driver We may leak 'namelist' in sound/usb/usbmixer.c::parse_audio_selector_unit() Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/usbmixer.c')
-rw-r--r--sound/usb/usbmixer.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/usb/usbmixer.c b/sound/usb/usbmixer.c
index 0bfea723739..8d08b34a1cb 100644
--- a/sound/usb/usbmixer.c
+++ b/sound/usb/usbmixer.c
@@ -1468,6 +1468,7 @@ static int parse_audio_selector_unit(struct mixer_build *state, int unitid, unsi
1468 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval); 1468 kctl = snd_ctl_new1(&mixer_selectunit_ctl, cval);
1469 if (! kctl) { 1469 if (! kctl) {
1470 snd_printk(KERN_ERR "cannot malloc kcontrol\n"); 1470 snd_printk(KERN_ERR "cannot malloc kcontrol\n");
1471 kfree(namelist);
1471 kfree(cval); 1472 kfree(cval);
1472 return -ENOMEM; 1473 return -ENOMEM;
1473 } 1474 }