From d6b37d0f4d5f2c62d956a12e220371c2623c9b2a Mon Sep 17 00:00:00 2001 From: Justin Kim Date: Fri, 2 Oct 2015 16:11:33 +0200 Subject: [PATCH] nleoperation: don't leak iterator Summary: Once an iterator is created, it should be freed after usage. Reviewers: thiblahute Projects: #gstreamer_editing_services Reviewed By: thiblahute Differential Revision: https://phabricator.freedesktop.org/D318 --- plugins/nle/nleoperation.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/nle/nleoperation.c b/plugins/nle/nleoperation.c index 9387de01fd..686c7b47c9 100644 --- a/plugins/nle/nleoperation.c +++ b/plugins/nle/nleoperation.c @@ -785,6 +785,8 @@ nle_operation_hard_cleanup (NleOperation * operation) } } nle_object_cleanup (NLE_OBJECT (operation)); + + gst_iterator_free (pads); }