mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 07:38:16 +00:00
gst/gstdebugutils.c: Fix memleak
Original commit message from CVS: * gst/gstdebugutils.c: Fix memleak
This commit is contained in:
parent
78734e4584
commit
f9da89f5c3
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-07-07 Thijs Vermeir <thijsvermeir@gmail.com>
|
||||
|
||||
* gst/gstdebugutils.c:
|
||||
Fix memleak
|
||||
|
||||
2008-07-06 Sebastian Dröge <sebastian.droege@collabora.co.uk>
|
||||
|
||||
Patch by: Alessandro Decina <alessandro at nnva dot org>
|
||||
|
|
|
@ -177,7 +177,7 @@ debug_dump_element_pad (GstPad * pad, GstElement * element,
|
|||
|
||||
g_free (pad_name);
|
||||
g_free (element_name);
|
||||
|
||||
g_free (spc);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -331,6 +331,7 @@ debug_dump_element_pad_link (GstPad * pad, GstElement * element,
|
|||
}
|
||||
gst_object_unref (peer_pad);
|
||||
}
|
||||
g_free (spc);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue