gstinfo: Use free instead of g_free

Because
This commit is contained in:
Edward Hervey 2017-11-25 13:07:12 +01:00 committed by Edward Hervey
parent 4ac09c73f6
commit a066522ad9

View 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);
}