diff mbox

drivers/media/video: fix memory leak of snd_cx18_init()

Message ID 1307124418-12073-1-git-send-email-andre.bartke@gmail.com (mailing list archive)
State Accepted
Headers show

Commit Message

Andre Bartke June 3, 2011, 6:06 p.m. UTC
cxsc is not freed in the error case.

Signed-off-by: Andre Bartke <andre.bartke@gmail.com>
---
 drivers/media/video/cx18/cx18-alsa-main.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
diff mbox

Patch

diff --git a/drivers/media/video/cx18/cx18-alsa-main.c b/drivers/media/video/cx18/cx18-alsa-main.c
index d50d69d..a1e6c2a 100644
--- a/drivers/media/video/cx18/cx18-alsa-main.c
+++ b/drivers/media/video/cx18/cx18-alsa-main.c
@@ -192,6 +192,7 @@  static int snd_cx18_init(struct v4l2_device *v4l2_dev)
 err_exit_free:
 	if (sc != NULL)
 		snd_card_free(sc);
+	kfree(cxsc);
 err_exit:
 	return ret;
 }