diff options
author | Jesper Juhl <jesper.juhl@gmail.com> | 2006-03-20 05:27:13 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 04:39:28 -0500 |
commit | 878b4789196e3cd470f843854b6b09d963214659 (patch) | |
tree | 188c0aa202335575675ca4788c411e07b87c747e /sound/usb | |
parent | d61975fc6b40dadd2cd61fc9535499c7d7b806de (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')
-rw-r--r-- | sound/usb/usbmixer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/usb/usbmixer.c b/sound/usb/usbmixer.c index 0bfea7237395..8d08b34a1cb5 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 | } |