From a5a22f03a56e966c8da2c3eafa78c22de9d7ac87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Mon, 7 Oct 2019 16:59:10 +0000 Subject: [PATCH] omxallocator: fix leak with a proper chaining finalize --- omx/gstomxallocator.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/omx/gstomxallocator.c b/omx/gstomxallocator.c index cf8058a50d..a180669791 100644 --- a/omx/gstomxallocator.c +++ b/omx/gstomxallocator.c @@ -233,6 +233,8 @@ gst_omx_allocator_finalize (GObject * object) gst_omx_component_unref (allocator->component); g_mutex_clear (&allocator->lock); g_cond_clear (&allocator->cond); + + G_OBJECT_CLASS (gst_omx_allocator_parent_class)->finalize (object); } gboolean