From 3942c8c7533f76d984cfa274f09dc7db8925b6c1 Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Wed, 11 Jan 2012 18:24:41 +0000 Subject: [PATCH] schrodec: fix tag leak --- ext/schroedinger/gstschrodec.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ext/schroedinger/gstschrodec.c b/ext/schroedinger/gstschrodec.c index 69a3806914..bbff0ebe2c 100644 --- a/ext/schroedinger/gstschrodec.c +++ b/ext/schroedinger/gstschrodec.c @@ -571,6 +571,8 @@ gst_schro_dec_process (GstSchroDec * schro_dec, gboolean eos) schro_frame_unref (schro_frame); } + if (tag) + schro_tag_free (tag); if (!eos) { go = FALSE; }