projects
/
platform
/
upstream
/
gstreamer.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4ac09c7
)
gstinfo: Use free instead of g_free
author
Edward Hervey
<edward@centricular.com>
Sat, 25 Nov 2017 12:07:12 +0000
(13:07 +0100)
committer
Edward Hervey
<bilboed@bilboed.com>
Sat, 25 Nov 2017 12:07:12 +0000
(13:07 +0100)
Because
gst/gstinfo.c
patch
|
blob
|
history
diff --git
a/gst/gstinfo.c
b/gst/gstinfo.c
index
49694e6
..
6500f22
100644
(file)
--- 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);
}