From: Anuj Jaiswal Date: Mon, 29 Sep 2014 04:52:55 +0000 (+0530) Subject: validate: mishandled pointer criticals X-Git-Tag: 1.19.3~491^2~1573 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83c0453d81827f3680f3c67aa6cefae7fecc17e3;p=platform%2Fupstream%2Fgstreamer.git validate: mishandled pointer criticals Free glist of criticals Signed-off-by: Anuj Jaiswal https://bugzilla.gnome.org/show_bug.cgi?id=736313 --- diff --git a/validate/gst/validate/gst-validate-runner.c b/validate/gst/validate/gst-validate-runner.c index 82e78f2..352ac7f 100644 --- a/validate/gst/validate/gst-validate-runner.c +++ b/validate/gst/validate/gst-validate-runner.c @@ -230,7 +230,8 @@ gst_validate_runner_printf (GstValidateRunner * runner) g_printerr ("\n"); } - g_list_free_full (reports, (GDestroyNotify) gst_validate_report_unref); + g_list_free_full (reports, (GDestroyNotify) gst_validate_report_unref); gst_validate_printf (NULL, "Issues found: %u\n", count); + g_list_free (criticals); return ret; }