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:
78ab2b5
)
tests/gst/info: Fix messages glist memory leak
author
Stefan Sauer
<ensonic@users.sf.net>
Wed, 20 Jan 2016 08:18:01 +0000
(09:18 +0100)
committer
Stefan Sauer
<ensonic@users.sf.net>
Wed, 20 Jan 2016 08:18:01 +0000
(09:18 +0100)
tests/check/gst/gstinfo.c
patch
|
blob
|
history
diff --git
a/tests/check/gst/gstinfo.c
b/tests/check/gst/gstinfo.c
index
e5091fa
..
3524938
100644
(file)
--- a/
tests/check/gst/gstinfo.c
+++ b/
tests/check/gst/gstinfo.c
@@
-327,7
+327,7
@@
GST_START_TEST (info_old_printf_extensions)
gst_debug_add_log_function (gst_debug_log_default, NULL, NULL);
gst_debug_remove_log_function (printf_extension_log_func);
save_messages = FALSE;
- g_list_f
oreach (messages, (GFunc) g_free, NULL
);
+ g_list_f
ree_full (messages, (GDestroyNotify) g_free
);
messages = NULL;
}