diff options
Diffstat (limited to 'src/demuxers/demux_fli.c')
-rw-r--r-- | src/demuxers/demux_fli.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/demuxers/demux_fli.c b/src/demuxers/demux_fli.c index 68ad37d61..584a3a706 100644 --- a/src/demuxers/demux_fli.c +++ b/src/demuxers/demux_fli.c @@ -22,7 +22,7 @@ * avoid while programming a FLI decoder, visit: * http://www.pcisys.net/~melanson/codecs/ * - * $Id: demux_fli.c,v 1.17 2002/10/23 03:21:19 tmmm Exp $ + * $Id: demux_fli.c,v 1.18 2002/10/23 04:58:15 tmmm Exp $ */ #ifdef HAVE_CONFIG_H @@ -342,6 +342,9 @@ static void demux_fli_stop (demux_plugin_t *this_gen) { } static void demux_fli_dispose (demux_plugin_t *this) { + + demux_fli_stop(this); + free(this); } |