diff options
Diffstat (limited to 'src/libxineadec/gsm610.c')
-rw-r--r-- | src/libxineadec/gsm610.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libxineadec/gsm610.c b/src/libxineadec/gsm610.c index c71ba11c7..dbaba6d7e 100644 --- a/src/libxineadec/gsm610.c +++ b/src/libxineadec/gsm610.c @@ -44,7 +44,7 @@ * Carsten Bormann * -------------------------------------------------------------------- * - * $Id: gsm610.c,v 1.2 2002/10/23 04:16:24 tmmm Exp $ + * $Id: gsm610.c,v 1.3 2002/11/03 06:08:54 tmmm Exp $ * */ @@ -219,6 +219,9 @@ static void gsm610_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); } |