mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
codecs: h264dpb: Don't leak pic_list GArray
The contents was cleared, but the array was never released.
This commit is contained in:
parent
4cb871eb53
commit
7b8c071f9c
1 changed files with 1 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue