diff options
author | Andreas Heinchen <heinchen@users.sourceforge.net> | 2003-04-25 00:23:21 +0000 |
---|---|---|
committer | Andreas Heinchen <heinchen@users.sourceforge.net> | 2003-04-25 00:23:21 +0000 |
commit | 566425b45618a0854b058824fb67938a46b55bbb (patch) | |
tree | 5d5c7c147c4a634a2d6cf82d7f65662426480cfa | |
parent | 5e42f1576afa4a60c243003fdc3f9a101d53a16b (diff) | |
download | xine-lib-566425b45618a0854b058824fb67938a46b55bbb.tar.gz xine-lib-566425b45618a0854b058824fb67938a46b55bbb.tar.bz2 |
memleak fix
CVS patchset: 4673
CVS date: 2003/04/25 00:23:21
-rw-r--r-- | src/libvorbis/xine_decoder.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libvorbis/xine_decoder.c b/src/libvorbis/xine_decoder.c index 57a538a84..8aa74ec8f 100644 --- a/src/libvorbis/xine_decoder.c +++ b/src/libvorbis/xine_decoder.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: xine_decoder.c,v 1.25 2003/01/08 01:02:30 miguelfreitas Exp $ + * $Id: xine_decoder.c,v 1.26 2003/04/25 00:23:21 heinchen Exp $ * * (ogg/)vorbis audio decoder plugin (libvorbis wrapper) for xine */ @@ -75,7 +75,6 @@ static void vorbis_reset (audio_decoder_t *this_gen) { vorbis_decoder_t *this = (vorbis_decoder_t *) this_gen; - vorbis_synthesis_init(&this->vd,&this->vi); vorbis_block_init(&this->vd,&this->vb); } |