summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago Santos <ts.santos@sisa.samsung.com>2014-07-08 14:56:13 -0300
committerThiago Santos <ts.santos@sisa.samsung.com>2014-07-08 14:56:38 -0300
commit2874bff3922eda34fb38bfbcac90472b5a0ddb61 (patch)
tree8ca09b40647f06302d79a1bb435363e821d50f57
parente4b07ee51d4d13387fd93f1f78ed85a7b6d0b1a3 (diff)
downloadgstreamer-plugins-bad-2874bff3922eda34fb38bfbcac90472b5a0ddb61.tar.gz
mpegts: fix leak of language code
-rw-r--r--gst-libs/gst/mpegts/gst-dvb-descriptor.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gst-libs/gst/mpegts/gst-dvb-descriptor.c b/gst-libs/gst/mpegts/gst-dvb-descriptor.c
index 9bf6629fa..b18e90c82 100644
--- a/gst-libs/gst/mpegts/gst-dvb-descriptor.c
+++ b/gst-libs/gst/mpegts/gst-dvb-descriptor.c
@@ -987,6 +987,7 @@ gst_mpegts_extended_event_descriptor_free (GstMpegtsExtendedEventDescriptor *
source)
{
g_free (source->text);
+ g_free (source->language_code);
g_ptr_array_unref (source->items);
g_slice_free (GstMpegtsExtendedEventDescriptor, source);
}