diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-14 09:44:19 +0100 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-03-22 10:38:23 +0100 |
commit | 202728d783a0fc180e7141d18186eeae167218a1 (patch) | |
tree | d24ca9a920cd92247b2f52f6512a73c317e545fb /sound/isa | |
parent | 3e964432f56f05a8ef639902796e476456b230ad (diff) | |
download | linux-202728d783a0fc180e7141d18186eeae167218a1.tar.gz linux-202728d783a0fc180e7141d18186eeae167218a1.tar.bz2 linux-202728d783a0fc180e7141d18186eeae167218a1.zip |
[ALSA] fix some memory leaks
Modules: Generic drivers,ES18xx driver,CS46xx driver
This patch fixes two memory leaks spotted by the Coverity checker.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa')
-rw-r--r-- | sound/isa/es18xx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/isa/es18xx.c b/sound/isa/es18xx.c index bb709264216f..721955d26194 100644 --- a/sound/isa/es18xx.c +++ b/sound/isa/es18xx.c @@ -2083,6 +2083,7 @@ static int __devinit snd_audiodrive_pnp(int dev, struct snd_audiodrive *acard, err = pnp_activate_dev(acard->devc); if (err < 0) { snd_printk(KERN_ERR PFX "PnP control configure failure (out of resources?)\n"); + kfree(cfg); return -EAGAIN; } snd_printdd("pnp: port=0x%lx\n", pnp_port_start(acard->devc, 0)); |