From 1d233b751636b2c7080e3f446664e85fb58c27b3 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Tue, 8 Jul 2014 15:43:32 -0300 Subject: mpegts: atsc: fix leak of short name --- gst-libs/gst/mpegts/gst-atsc-section.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst-libs/gst/mpegts/gst-atsc-section.c b/gst-libs/gst/mpegts/gst-atsc-section.c index fe97cada2..021c8e607 100644 --- a/gst-libs/gst/mpegts/gst-atsc-section.c +++ b/gst-libs/gst/mpegts/gst-atsc-section.c @@ -49,6 +49,7 @@ _gst_mpegts_atsc_vct_source_copy (GstMpegtsAtscVCTSource * source) static void _gst_mpegts_atsc_vct_source_free (GstMpegtsAtscVCTSource * source) { + g_free (source->short_name); if (source->descriptors) g_ptr_array_unref (source->descriptors); g_slice_free (GstMpegtsAtscVCTSource, source); -- cgit v1.2.1