From a2d01b3a8b82f1c3039920d2c6cbf0985813ee5a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 6 Mar 2019 17:35:58 +0000 Subject: [PATCH] tests: rtpulpfec: fix buffer leak in unit test This freed wrapped memory instead of the GstMemory or buffer. --- tests/check/elements/rtpulpfec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/check/elements/rtpulpfec.c b/tests/check/elements/rtpulpfec.c index 9910683..5ce03fa 100644 --- a/tests/check/elements/rtpulpfec.c +++ b/tests/check/elements/rtpulpfec.c @@ -122,7 +122,7 @@ lose_and_recover_test (GstHarness * h, guint16 lost_seq, gst_rtp_buffer_unmap (&rtpout); fail_unless (!GST_BUFFER_FLAG_IS_SET (bufout, GST_RTP_BUFFER_FLAG_REDUNDANT)); gst_buffer_unref (bufout); - g_free (reccopy); + gst_buffer_unref (wrap); /* Pushing the next buffer with discont flag set */ bufout = gst_rtp_buffer_new_allocate (0, 0, 0); -- 2.7.4