From: Guillaume Desmottes Date: Mon, 18 Apr 2016 14:39:02 +0000 (+0300) Subject: gst-play: call gst_deinit() X-Git-Tag: 1.19.3~511^2~2880 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ef1a99d4d86c2d5734d55d371116fbd34aac107c;p=platform%2Fupstream%2Fgstreamer.git gst-play: call gst_deinit() So we can use gst-play to track memory leaks. https://bugzilla.gnome.org/show_bug.cgi?id=765216 --- diff --git a/tools/gst-play.c b/tools/gst-play.c index 6a70f0e..4204d55 100644 --- a/tools/gst-play.c +++ b/tools/gst-play.c @@ -1289,5 +1289,6 @@ main (int argc, char **argv) g_free (video_sink); g_print ("\n"); + gst_deinit (); return 0; }