diff options
author | Vineeth TM <vineeth.tm@samsung.com> | 2015-10-07 17:14:57 +0900 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2015-10-07 11:22:20 +0100 |
commit | 44008938bb4b296f1d584d9450a338e63157b9f8 (patch) | |
tree | 40dc44d6627f94963039fefeedbfb6bf3c228dc2 /gst/isomp4 | |
parent | d7a80be3c744cff10a486e1a4e5c618e7aa85127 (diff) | |
download | gstreamer-plugins-good-44008938bb4b296f1d584d9450a338e63157b9f8.tar.gz |
qtmux: Fix date memory leak
When getting date from taglist, the memory should be freed after
using it.
https://bugzilla.gnome.org/show_bug.cgi?id=756171
Diffstat (limited to 'gst/isomp4')
-rw-r--r-- | gst/isomp4/gstqtmux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/isomp4/gstqtmux.c b/gst/isomp4/gstqtmux.c index a8fc7cdab..ccc6ecfd9 100644 --- a/gst/isomp4/gstqtmux.c +++ b/gst/isomp4/gstqtmux.c @@ -1004,6 +1004,7 @@ gst_qt_mux_add_3gp_date (GstQTMux * qtmux, const GstTagList * list, return; year = g_date_get_year (date); + g_date_free (date); if (year == G_DATE_BAD_YEAR) { GST_WARNING_OBJECT (qtmux, "invalid date in tag"); |