From 2238f0536fa7bb4ad6d59ff38ed040dc4d81ff64 Mon Sep 17 00:00:00 2001 From: Ewald Snel Date: Tue, 23 Apr 2002 13:30:42 +0000 Subject: Fix memory leaks by disposing input, demux and decoder plugins at exit - add dispose() function to all decoder plugin structures CVS patchset: 1763 CVS date: 2002/04/23 13:30:42 --- src/demuxers/demux_mpgaudio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/demuxers/demux_mpgaudio.c') diff --git a/src/demuxers/demux_mpgaudio.c b/src/demuxers/demux_mpgaudio.c index b76ffc48e..6e8556820 100644 --- a/src/demuxers/demux_mpgaudio.c +++ b/src/demuxers/demux_mpgaudio.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: demux_mpgaudio.c,v 1.38 2002/04/09 03:38:00 miguelfreitas Exp $ + * $Id: demux_mpgaudio.c,v 1.39 2002/04/23 13:30:42 esnel Exp $ * * demultiplexer for mpeg audio (i.e. mp3) streams * @@ -455,7 +455,7 @@ static char *demux_mpgaudio_get_mimetypes(void) { } static void demux_mpgaudio_close (demux_plugin_t *this) { - /* nothing */ + free (this); } static int demux_mpgaudio_get_stream_length (demux_plugin_t *this_gen) { -- cgit v1.2.3