codecs: h264dpb: Don't leak pic_list GArray
authorNicolas Dufresne <nicolas.dufresne@collabora.com>
Fri, 27 Mar 2020 17:05:41 +0000 (13:05 -0400)
committerNicolas Dufresne <nicolas.dufresne@collabora.com>
Tue, 31 Mar 2020 13:34:05 +0000 (09:34 -0400)
The contents was cleared, but the array was never released.

gst-libs/gst/codecs/gsth264picture.c

index 1177bd4..03daa32 100644 (file)
@@ -173,6 +173,7 @@ gst_h264_dpb_free (GstH264Dpb * dpb)
   g_return_if_fail (dpb != NULL);
 
   gst_h264_dpb_clear (dpb);
+  g_array_unref (dpb->pic_list);
   g_free (dpb);
 }