[vlc-commits] faad: fix memory leak

Hannes Domani git at videolan.org
Tue Dec 15 14:28:13 CET 2015


vlc | branch: master | Hannes Domani <ssbssa at yahoo.de> | Sun Dec 13 16:16:09 2015 +0100| [b0c7b9c8a781cd248bf9b69aefca38419856b3f2] | committer: Jean-Baptiste Kempf

faad: fix memory leak

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=b0c7b9c8a781cd248bf9b69aefca38419856b3f2
---

 modules/codec/faad.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/codec/faad.c b/modules/codec/faad.c
index f246f25..642e08b 100644
--- a/modules/codec/faad.c
+++ b/modules/codec/faad.c
@@ -516,6 +516,7 @@ static block_t *DecodeBlock( decoder_t *p_dec, block_t **pp_block )
                      p_sys->i_buffer );
         }
 
+        block_Release( p_block );
         return p_out;
     }
     else



More information about the vlc-commits mailing list