From: Seungha Yang Date: Tue, 27 Dec 2022 14:26:48 +0000 (+0900) Subject: rtptimerqueue: Fix memory leak X-Git-Tag: 1.22.0~114 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fgstreamer.git;a=commitdiff_plain;h=9b305df1cc1343f8a90b01f2929b2a52d528a8f5 rtptimerqueue: Fix memory leak Should chain up to parent's finalize Part-of: --- diff --git a/subprojects/gst-plugins-good/gst/rtpmanager/rtptimerqueue.c b/subprojects/gst-plugins-good/gst/rtpmanager/rtptimerqueue.c index 7b13657..6cee026 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