tools/gst-inspect.c: don't free random data twice. (fixes #144185)

Original commit message from CVS:
reviewed by Benjamin Otte  <in7y118@public.uni-hamburg.de>
* tools/gst-inspect.c: (print_signal_info):
don't free random data twice. (fixes #144185)
This commit is contained in:
Benjamin Otte 2004-06-11 20:57:29 +00:00
parent 4bd086921c
commit 60bc42d1fc
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2004-06-11 Steve Lhomme <steve.lhomme@free.fr>
reviewed by Benjamin Otte <in7y118@public.uni-hamburg.de>
* tools/gst-inspect.c: (print_signal_info):
don't free random data twice. (fixes #144185)
2004-06-11 Thomas Vander Stichele <thomas at apestaart dot org>
* gst/gstqueue.c:

View file

@ -797,7 +797,6 @@ print_signal_info (GstElement * element)
g_free (indent);
}
g_free (query);
if (found_signals) {
g_slist_foreach (found_signals, (GFunc) g_free, NULL);
g_slist_free (found_signals);