From 8701460c03f780151c5371677f356690e8a1f25a Mon Sep 17 00:00:00 2001 From: Monty Date: Fri, 10 Mar 2000 16:23:57 +0000 Subject: [PATCH] forgot to remove a leak check Monty svn path=/trunk/vorbis/; revision=277 --- lib/vorbisfile.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/vorbisfile.c b/lib/vorbisfile.c index d6731c8..6e304b7 100644 --- a/lib/vorbisfile.c +++ b/lib/vorbisfile.c @@ -12,7 +12,7 @@ ******************************************************************** function: stdio-based convenience library for opening/seeking/decoding - last mod: $Id: vorbisfile.c,v 1.16 2000/03/10 13:21:18 xiphmont Exp $ + last mod: $Id: vorbisfile.c,v 1.17 2000/03/10 16:23:57 xiphmont Exp $ ********************************************************************/ @@ -529,7 +529,9 @@ int ov_clear(OggVorbis_File *vf){ if(vf->f)fclose(vf->f); memset(vf,0,sizeof(OggVorbis_File)); } +#ifdef DEBUG_LEAKS _VDBG_dump(); +#endif return(0); } -- 2.7.4