mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
tracerrecord: Fix self->spec structure invalid free
self->spec is got using g_value_get_boxed(), which is a transfer none function. So the same should not be freed, which is resulting in wrong behavior. https://bugzilla.gnome.org/show_bug.cgi?id=760821
This commit is contained in:
parent
fc02815459
commit
7738236968
1 changed files with 0 additions and 1 deletions
|
@ -134,7 +134,6 @@ gst_tracer_record_dispose (GObject * object)
|
||||||
{
|
{
|
||||||
GstTracerRecord *self = GST_TRACER_RECORD (object);
|
GstTracerRecord *self = GST_TRACER_RECORD (object);
|
||||||
|
|
||||||
gst_structure_free (self->spec);
|
|
||||||
g_free (self->format);
|
g_free (self->format);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue