mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
aspectratiocrop: Don't forget to call parent finalize implementation.
This fixes a memory leak (leaking the contained elements of the bin).
This commit is contained in:
parent
309c651286
commit
77c7eed1ae
1 changed files with 2 additions and 0 deletions
|
@ -204,6 +204,8 @@ gst_aspect_ratio_crop_finalize (GObject * object)
|
|||
|
||||
if (aspect_ratio_crop->crop_lock)
|
||||
g_mutex_free (aspect_ratio_crop->crop_lock);
|
||||
|
||||
G_OBJECT_CLASS (parent_class)->finalize (object);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue