mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
basetransform: fix pool leak when early returning in decide_allocation
https://bugzilla.gnome.org/show_bug.cgi?id=769023
This commit is contained in:
parent
24a09d1b6d
commit
fcb938caae
1 changed files with 3 additions and 0 deletions
|
@ -960,6 +960,9 @@ gst_base_transform_default_decide_allocation (GstBaseTransform * trans,
|
|||
return TRUE;
|
||||
|
||||
config_failed:
|
||||
if (pool)
|
||||
gst_object_unref (pool);
|
||||
|
||||
GST_ELEMENT_ERROR (trans, RESOURCE, SETTINGS,
|
||||
("Failed to configure the buffer pool"),
|
||||
("Configuration is most likely invalid, please report this issue."));
|
||||
|
|
Loading…
Reference in a new issue