]> git.proxmox.com Git - mirror_qemu.git/commitdiff
audio: Free consumed default audio devices
authorAkihiko Odaki <akihiko.odaki@daynix.com>
Mon, 20 Nov 2023 11:28:02 +0000 (20:28 +0900)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 24 Nov 2023 15:21:55 +0000 (16:21 +0100)
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>
Acked-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-ID: <20231120112804.9736-1-akihiko.odaki@daynix.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
audio/audio.c

index f91e05b72c91b040fbd24cd2d541d5a174442ce7..8d1e4ad92271b39893c4e6454cce4d66d36458fa 100644 (file)
@@ -1758,12 +1758,15 @@ 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);
+            s->dev = NULL;
         }
     }