summaryrefslogtreecommitdiff
path: root/src/demuxers/demux_fli.c
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2002-10-23 04:58:15 +0000
committerMike Melanson <mike@multimedia.cx>2002-10-23 04:58:15 +0000
commitd3ef4de1c04cb6a18ae19ffa40ec4feadaf21042 (patch)
tree207543aa4755d773ddb50e8dd9036f41b2e488e0 /src/demuxers/demux_fli.c
parentc1d402da2f6c11e57d55695d00e6f9cb1291ab23 (diff)
downloadxine-lib-d3ef4de1c04cb6a18ae19ffa40ec4feadaf21042.tar.gz
xine-lib-d3ef4de1c04cb6a18ae19ffa40ec4feadaf21042.tar.bz2
calling _stop() within _dispose() solves a lot of problems
CVS patchset: 2956 CVS date: 2002/10/23 04:58:15
Diffstat (limited to 'src/demuxers/demux_fli.c')
-rw-r--r--src/demuxers/demux_fli.c5
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);
}