decodebin2: Properly free when shutting down in gst_decode_bin_expose

missing_plugin_details causes memory leakages when shutting down.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5750>
This commit is contained in:
Jimmy Ohn 2023-12-01 18:46:35 +09:00 committed by Tim-Philipp Müller
parent c0bba84244
commit 890e5533ee

View file

@ -4675,6 +4675,7 @@ retry:
if (G_UNLIKELY (dbin->shutdown)) {
GST_WARNING_OBJECT (dbin, "Currently, shutting down, aborting exposing");
DYN_UNLOCK (dbin);
g_string_free (missing_plugin_details, TRUE);
return FALSE;
}
DYN_UNLOCK (dbin);