From 6ee8b22c403bb15407ca012e54cf463c1b24ed13 Mon Sep 17 00:00:00 2001 From: Vineeth TM Date: Mon, 17 Aug 2015 11:18:25 +0900 Subject: [PATCH] discoverer: free context and error during failures When g_option_context_parse or gst_discoverer_new fails, then there will be memory leaks for ctx and err variables. Free'ing the same. https://bugzilla.gnome.org/show_bug.cgi?id=753701 --- tools/gst-discoverer.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/gst-discoverer.c b/tools/gst-discoverer.c index 045332ddff..2c088e56de 100644 --- a/tools/gst-discoverer.c +++ b/tools/gst-discoverer.c @@ -555,6 +555,8 @@ main (int argc, char **argv) if (!g_option_context_parse (ctx, &argc, &argv, &err)) { g_print ("Error initializing: %s\n", err->message); + g_option_context_free (ctx); + g_clear_error (&err); exit (1); } @@ -568,6 +570,7 @@ main (int argc, char **argv) dc = gst_discoverer_new (timeout * GST_SECOND, &err); if (G_UNLIKELY (dc == NULL)) { g_print ("Error initializing: %s\n", err->message); + g_clear_error (&err); exit (1); }