summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty <xiphmont@xiph.org>2000-03-10 16:23:57 +0000
committerMonty <xiphmont@xiph.org>2000-03-10 16:23:57 +0000
commit8701460c03f780151c5371677f356690e8a1f25a (patch)
treeda4e81afbc0587d46628d2ada29ac79da9db0d0a
parentf894be654bb8b1a79e7a49cecdb8580064f831f1 (diff)
downloadlibvorbis-git-8701460c03f780151c5371677f356690e8a1f25a.tar.gz
forgot to remove a leak check
Monty svn path=/trunk/vorbis/; revision=277
-rw-r--r--lib/vorbisfile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/vorbisfile.c b/lib/vorbisfile.c
index d6731c82..6e304b7a 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);
}