aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Lauss <manuel.lauss@googlemail.com>2009-12-01 12:10:35 -0500
committerMark Brown <broonie@opensource.wolfsonmicro.com>2009-12-03 05:49:55 -0500
commitefd9eb96d5604c2c133e500f7b8c7b3f3fbdece8 (patch)
tree611282018fc1722eefe0681240a099974ce6792f
parent1bc8079879e8edfff451b62b7550bdd18523f963 (diff)
ASoC: au1x: dbdma2: plug memleak in pcm device creation error path
free the allocated pcm platform device in the error path. Signed-off-by: Manuel Lauss <manuel.lauss@gmail.com> Acked-by: Liam Girdwood <lrg@slimlogic.co.uk> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r--sound/soc/au1x/dbdma2.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/au1x/dbdma2.c b/sound/soc/au1x/dbdma2.c
index 2ca33b09a867..19e4d37eba1c 100644
--- a/sound/soc/au1x/dbdma2.c
+++ b/sound/soc/au1x/dbdma2.c
@@ -480,6 +480,7 @@ struct platform_device *au1xpsc_pcm_add(struct platform_device *pdev)
480 if (!ret) 480 if (!ret)
481 return pd; 481 return pd;
482 482
483 platform_device_put(pd);
483out: 484out:
484 kfree(res); 485 kfree(res);
485 return NULL; 486 return NULL;