From 11b99dff22d579e4a967c4de749291f501f7f1fb Mon Sep 17 00:00:00 2001 From: Daniel Caujolle-Bert Date: Sun, 21 Mar 2004 23:13:59 +0000 Subject: memleak CVS patchset: 6295 CVS date: 2004/03/21 23:13:59 --- src/demuxers/demux_aac.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/demuxers/demux_aac.c b/src/demuxers/demux_aac.c index 6340b918d..375f67f2c 100644 --- a/src/demuxers/demux_aac.c +++ b/src/demuxers/demux_aac.c @@ -21,7 +21,7 @@ * This demuxer presently only detects a raw AAC file by the extension * '.aac'. Then it shovels buffer-sized chunks over to the AAC decoder. * - * $Id: demux_aac.c,v 1.2 2004/01/09 01:26:32 miguelfreitas Exp $ + * $Id: demux_aac.c,v 1.3 2004/03/21 23:13:59 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -136,8 +136,9 @@ static int demux_aac_seek (demux_plugin_t *this_gen, } static void demux_aac_dispose (demux_plugin_t *this_gen) { -// demux_aac_t *this = (demux_aac_t *) this_gen; + demux_aac_t *this = (demux_aac_t *) this_gen; + free(this); } static int demux_aac_get_status (demux_plugin_t *this_gen) { -- cgit v1.2.3