From 5a893f2a95f6614ef8e5b567c21dc68acadcc972 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 12 Mar 2020 11:22:56 +0100 Subject: [PATCH] videomixer: Don't leak peer caps --- gst/videomixer/videomixer2.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gst/videomixer/videomixer2.c b/gst/videomixer/videomixer2.c index 69a0a0fb3b..e181e60811 100644 --- a/gst/videomixer/videomixer2.c +++ b/gst/videomixer/videomixer2.c @@ -258,6 +258,7 @@ gst_videomixer2_update_src_caps (GstVideoMixer2 * mix) tmp = gst_caps_intersect (caps, peercaps); gst_caps_unref (caps); gst_caps_unref (peercaps); + peercaps = NULL; caps = tmp; if (gst_caps_is_empty (caps)) { GST_DEBUG_OBJECT (mix, "empty caps"); @@ -277,6 +278,8 @@ gst_videomixer2_update_src_caps (GstVideoMixer2 * mix) gst_structure_get_int (s, "height", &info.height); gst_structure_get_fraction (s, "fraction", &info.fps_n, &info.fps_d); } + if (peercaps) + gst_caps_unref (peercaps); gst_caps_unref (caps); caps = gst_video_info_to_caps (&info);