commit | 19b6446d39a3ecd664bb5179a63b3e6e136ba9e7 | [log] [tgz] |
---|---|---|
author | Seungha Yang <seungha.yang@navercorp.com> | Tue May 08 23:44:38 2018 +0900 |
committer | Tim-Philipp Müller <tim@centricular.com> | Tue May 08 16:51:07 2018 +0100 |
tree | 905b6bb117e5a0cb4268b56cf9643a7a0512d188 | |
parent | 35039ea2b44b0e3e46eae01920e1e853f5d2c442 [diff] |
uridecodebin3: Fix string leak uri and suburi should be free'd https://bugzilla.gnome.org/show_bug.cgi?id=795932
diff --git a/gst/playback/gsturidecodebin3.c b/gst/playback/gsturidecodebin3.c index 436e37c..606fe3d 100644 --- a/gst/playback/gsturidecodebin3.c +++ b/gst/playback/gsturidecodebin3.c
@@ -652,6 +652,8 @@ GstURIDecodeBin3 *dec = GST_URI_DECODE_BIN3 (obj); g_mutex_clear (&dec->lock); + g_free (dec->uri); + g_free (dec->suburi); G_OBJECT_CLASS (parent_class)->finalize (obj); }