* [PATCH] audio: Free consumed default audio devices
@ 2023-11-19 8:39 Akihiko Odaki
2023-11-20 6:32 ` Marc-André Lureau
0 siblings, 1 reply; 2+ messages in thread
From: Akihiko Odaki @ 2023-11-19 8:39 UTC (permalink / raw)
Cc: Akihiko Odaki, Gerd Hoffmann, Marc-André Lureau, qemu-devel
Failed default audio devices were removed from the list but not freed,
and that made LeakSanitizer sad. Free default audio devices as they are
consumed.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
audio/audio.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/audio/audio.c b/audio/audio.c
index f91e05b72c..becf6cdf46 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -1758,12 +1758,14 @@ static AudioState *audio_init(Audiodev *dev, Error **errp)
goto out;
}
s->dev = dev = e->dev;
+ QSIMPLEQ_REMOVE_HEAD(&default_audiodevs, next);
+ g_free(e);
drvname = AudiodevDriver_str(dev->driver);
driver = audio_driver_lookup(drvname);
if (!audio_driver_init(s, driver, dev, NULL)) {
break;
}
- QSIMPLEQ_REMOVE_HEAD(&default_audiodevs, next);
+ qapi_free_Audiodev(dev);
}
}
--
2.42.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] audio: Free consumed default audio devices
2023-11-19 8:39 [PATCH] audio: Free consumed default audio devices Akihiko Odaki
@ 2023-11-20 6:32 ` Marc-André Lureau
0 siblings, 0 replies; 2+ messages in thread
From: Marc-André Lureau @ 2023-11-20 6:32 UTC (permalink / raw)
To: Akihiko Odaki; +Cc: Gerd Hoffmann, qemu-devel
Hi
On Sun, Nov 19, 2023 at 12:40 PM Akihiko Odaki <akihiko.odaki@daynix.com> wrote:
>
> Failed default audio devices were removed from the list but not freed,
> and that made LeakSanitizer sad. Free default audio devices as they are
> consumed.
>
> Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
> ---
> audio/audio.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/audio/audio.c b/audio/audio.c
> index f91e05b72c..becf6cdf46 100644
> --- a/audio/audio.c
> +++ b/audio/audio.c
> @@ -1758,12 +1758,14 @@ static AudioState *audio_init(Audiodev *dev, Error **errp)
> goto out;
> }
> s->dev = dev = e->dev;
> + QSIMPLEQ_REMOVE_HEAD(&default_audiodevs, next);
> + g_free(e);
> drvname = AudiodevDriver_str(dev->driver);
> driver = audio_driver_lookup(drvname);
> if (!audio_driver_init(s, driver, dev, NULL)) {
> break;
> }
> - QSIMPLEQ_REMOVE_HEAD(&default_audiodevs, next);
> + qapi_free_Audiodev(dev);
I'd set s->dev to NULL, to avoid potential dangling pointers.
(it looks like like this could already hit a double-free on error path)
> }
> }
>
> --
> 2.42.1
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-11-20 6:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-19 8:39 [PATCH] audio: Free consumed default audio devices Akihiko Odaki
2023-11-20 6:32 ` Marc-André Lureau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).