Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gstreamer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <edward@centricular.com>2017-11-25 15:07:12 +0300
committerEdward Hervey <bilboed@bilboed.com>2017-12-01 11:48:39 +0300
commit2d0a1669b3ec8b03f97b19fbf38b4102386ff904 (patch)
treeb85a04b0d9da884673c77b3b472389036de032cd
parent9df84971c7a205ecec58aff8c19c2131d0647358 (diff)
gstinfo: Use free instead of g_free
Because
-rw-r--r--gst/gstinfo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstinfo.c b/gst/gstinfo.c
index dd8f1b812c..5becf4f755 100644
--- a/gst/gstinfo.c
+++ b/gst/gstinfo.c
@@ -2751,7 +2751,7 @@ generate_backtrace_trace (void)
for (j = 0; j < nptrs; j++)
g_string_append_printf (trace, "%s\n", strings[j]);
- g_free (strings);
+ free (strings);
return g_string_free (trace, FALSE);
}