From 9b305df1cc1343f8a90b01f2929b2a52d528a8f5 Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Tue, 27 Dec 2022 23:26:48 +0900 Subject: [PATCH] rtptimerqueue: Fix memory leak Should chain up to parent's finalize Part-of: --- subprojects/gst-plugins-good/gst/rtpmanager/rtptimerqueue.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subprojects/gst-plugins-good/gst/rtpmanager/rtptimerqueue.c b/subprojects/gst-plugins-good/gst/rtpmanager/rtptimerqueue.c index 7b1365753d..6cee0266e3 100644 --- a/subprojects/gst-plugins-good/gst/rtpmanager/rtptimerqueue.c +++ b/subprojects/gst-plugins-good/gst/rtpmanager/rtptimerqueue.c @@ -304,6 +304,8 @@ rtp_timer_queue_finalize (GObject * object) rtp_timer_free (timer); g_hash_table_unref (queue->hashtable); g_assert (queue->timers.length == 0); + + G_OBJECT_CLASS (rtp_timer_queue_parent_class)->finalize (object); } static void