summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMike Smith <msmith@xiph.org>2001-11-13 06:04:31 +0000
committerMike Smith <msmith@xiph.org>2001-11-13 06:04:31 +0000
commit2abf9ccfd09737fd49caf855154e5fd5969a86e2 (patch)
tree1e02deb94556fadc5b8357a4b280dbdfebc440dc /lib
parent244da0362390b528795f30bae3b62a3ad6b29821 (diff)
downloadlibvorbis-git-2abf9ccfd09737fd49caf855154e5fd5969a86e2.tar.gz
Use _ogg_free() instea of free() in one place.
svn path=/trunk/vorbis/; revision=2355
Diffstat (limited to 'lib')
-rw-r--r--lib/floor1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/floor1.c b/lib/floor1.c
index 1b05737f..d115c519 100644
--- a/lib/floor1.c
+++ b/lib/floor1.c
@@ -11,7 +11,7 @@
********************************************************************
function: floor backend 1 implementation
- last mod: $Id: floor1.c,v 1.16 2001/10/02 00:14:31 segher Exp $
+ last mod: $Id: floor1.c,v 1.17 2001/11/13 06:04:31 msmith Exp $
********************************************************************/
@@ -90,7 +90,7 @@ static void floor1_free_look(vorbis_look_floor *i){
(float)(look->postbits+look->phrasebits)/look->frames);*/
memset(look,0,sizeof(*look));
- free(look);
+ _ogg_free(look);
}
}