All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] ossaudio: fix memory leak
@ 2015-06-23  1:01 ` arei.gonglei
  0 siblings, 0 replies; 6+ messages in thread
From: arei.gonglei @ 2015-06-23  1:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, Gonglei, kraxel

From: Gonglei <arei.gonglei@huawei.com>

Variable "conf" going out of scope leaks the storage
it points to in line 856.

Signed-off-by: Gonglei <arei.gonglei@huawei.com>
---
 audio/ossaudio.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/audio/ossaudio.c b/audio/ossaudio.c
index 11e76a1..7dbe333 100644
--- a/audio/ossaudio.c
+++ b/audio/ossaudio.c
@@ -853,6 +853,7 @@ static void *oss_audio_init (void)
 
     if (access(conf->devpath_in, R_OK | W_OK) < 0 ||
         access(conf->devpath_out, R_OK | W_OK) < 0) {
+        g_free(conf);
         return NULL;
     }
     return conf;
-- 
1.7.12.4




^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-06-23  8:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-23  1:01 [Qemu-trivial] [PATCH] ossaudio: fix memory leak arei.gonglei
2015-06-23  1:01 ` [Qemu-devel] " arei.gonglei
2015-06-23  7:35 ` [Qemu-trivial] " Markus Armbruster
2015-06-23  7:35   ` Markus Armbruster
2015-06-23  8:03   ` [Qemu-trivial] " Gonglei
2015-06-23  8:03     ` Gonglei

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.