qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 15/15] audio: fix memory leak reported by ASAN


From: Gerd Hoffmann
Subject: [Qemu-devel] [PULL 15/15] audio: fix memory leak reported by ASAN
Date: Wed, 21 Aug 2019 10:41:13 +0200

From: Kővágó, Zoltán <address@hidden>

Signed-off-by: Kővágó, Zoltán <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Message-id: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>
---
 audio/audio.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/audio/audio.c b/audio/audio.c
index 9ce229969526..7d715332c993 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -1345,6 +1345,12 @@ static void free_audio_state(AudioState *s)
         qapi_free_Audiodev(s->dev);
         s->dev = NULL;
     }
+
+    if (s->ts) {
+        timer_free(s->ts);
+        s->ts = NULL;
+    }
+
     g_free(s);
 }
 
-- 
2.18.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]