diff mbox

[1/2] ASoC: dapm: fix memory leak

Message ID 1441888305-19957-1-git-send-email-sudipm.mukherjee@gmail.com (mailing list archive)
State Accepted
Commit 75881df3fd7708f234c1e2573ade812eb5701708
Headers show

Commit Message

Sudip Mukherjee Sept. 10, 2015, 12:31 p.m. UTC
Incase of an unknown event we were directly returning but we missed
freeing params.

Signed-off-by: Sudip Mukherjee <sudip@vectorindia.org>
---
 sound/soc/soc-dapm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index f4bf21a..ff8bda4 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -3501,7 +3501,7 @@  static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
 
 	default:
 		WARN(1, "Unknown event %d\n", event);
-		return -EINVAL;
+		ret = -EINVAL;
 	}
 
 out: