gstinfo: Use free instead of g_free
authorEdward Hervey <edward@centricular.com>
Sat, 25 Nov 2017 12:07:12 +0000 (13:07 +0100)
committerEdward Hervey <bilboed@bilboed.com>
Sat, 25 Nov 2017 12:07:12 +0000 (13:07 +0100)
Because

gst/gstinfo.c

index 49694e6..6500f22 100644 (file)
@@ -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);
 }