diff options
Diffstat (limited to 'src/libxineadec/roqaudio.c')
-rw-r--r-- | src/libxineadec/roqaudio.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libxineadec/roqaudio.c b/src/libxineadec/roqaudio.c index 85c09b991..d46fb6e4e 100644 --- a/src/libxineadec/roqaudio.c +++ b/src/libxineadec/roqaudio.c @@ -21,7 +21,7 @@ * For more information regarding the RoQ file format, visit: * http://www.csse.monash.edu.au/~timf/ * - * $Id: roqaudio.c,v 1.9 2002/10/23 02:55:01 tmmm Exp $ + * $Id: roqaudio.c,v 1.10 2002/11/03 06:08:54 tmmm Exp $ * */ @@ -153,6 +153,9 @@ static void roqaudio_dispose (audio_decoder_t *this_gen) { this->stream->audio_out->close (this->stream->audio_out); this->output_open = 0; + if (this->buf) + free(this->buf); + free (this_gen); } |