From 0a26a6c6759e51ff903790735c7172d12353abd2 Mon Sep 17 00:00:00 2001 From: Matthias Fuchs Date: Sat, 1 Apr 2023 15:01:43 +0200 Subject: [PATCH] Unref events which are not accepted --- gst/interpipe/gstinterpipesrc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/interpipe/gstinterpipesrc.c b/gst/interpipe/gstinterpipesrc.c index f0b6eb3..a043cd5 100644 --- a/gst/interpipe/gstinterpipesrc.c +++ b/gst/interpipe/gstinterpipesrc.c @@ -751,6 +751,7 @@ gst_inter_pipe_src_push_event (GstInterPipeIListener * iface, GstEvent * event, GST_DEBUG_OBJECT (src, "The interpipesrc is not currently processing the incoming events " "because the accept incoming events property is set to FALSE"); + gst_event_unref (event); return TRUE; } }