mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
discoverer: fix leaks caused by some base class dtors not being called
This commit is contained in:
parent
96e40584ce
commit
426f991b52
1 changed files with 2 additions and 0 deletions
|
@ -210,6 +210,7 @@ static void
|
|||
gst_discoverer_audio_info_finalize (GstDiscovererAudioInfo * info)
|
||||
{
|
||||
g_free (info->language);
|
||||
gst_discoverer_stream_info_finalize ((GstDiscovererStreamInfo *) info);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -263,6 +264,7 @@ static void
|
|||
gst_discoverer_subtitle_info_finalize (GstDiscovererSubtitleInfo * info)
|
||||
{
|
||||
g_free (info->language);
|
||||
gst_discoverer_stream_info_finalize ((GstDiscovererStreamInfo *) info);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue