tests: rtpulpfec: fix buffer leak in unit test
authorTim-Philipp Müller <tim@centricular.com>
Wed, 6 Mar 2019 17:35:58 +0000 (17:35 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Wed, 6 Mar 2019 19:40:10 +0000 (19:40 +0000)
This freed wrapped memory instead of the GstMemory or buffer.

tests/check/elements/rtpulpfec.c

index 9910683..5ce03fa 100644 (file)
@@ -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);