From bea8cba5e69a34b35986a95a6d225a0b7571124e Mon Sep 17 00:00:00 2001 From: Jakub Adam Date: Thu, 27 Jan 2022 17:56:29 +0100 Subject: [PATCH] webrtcbin: Chain up to parent constructed method Failing to do so makes GstWebRTCBin invisible to the leaks tracer. Part-of: --- subprojects/gst-plugins-bad/ext/webrtc/gstwebrtcbin.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/subprojects/gst-plugins-bad/ext/webrtc/gstwebrtcbin.c b/subprojects/gst-plugins-bad/ext/webrtc/gstwebrtcbin.c index fbbba46..9d5b263 100644 --- a/subprojects/gst-plugins-bad/ext/webrtc/gstwebrtcbin.c +++ b/subprojects/gst-plugins-bad/ext/webrtc/gstwebrtcbin.c @@ -7309,6 +7309,8 @@ gst_webrtc_bin_constructed (GObject * object) (GstWebRTCIceOnCandidateFunc) _on_local_ice_candidate_cb, webrtc, NULL); g_free (name); + + G_OBJECT_CLASS (parent_class)->constructed (object); } static void -- 2.7.4