[xiph-commits] r14321 - trunk/theora/lib/dec
tterribe at svn.xiph.org
tterribe at svn.xiph.org
Sat Dec 22 10:09:30 PST 2007
Author: tterribe
Date: 2007-12-22 10:09:29 -0800 (Sat, 22 Dec 2007)
New Revision: 14321
Modified:
trunk/theora/lib/dec/apiwrapper.c
Log:
Fix another instance of free being used instead of _ogg_free.
Modified: trunk/theora/lib/dec/apiwrapper.c
===================================================================
--- trunk/theora/lib/dec/apiwrapper.c 2007-12-22 17:07:49 UTC (rev 14320)
+++ trunk/theora/lib/dec/apiwrapper.c 2007-12-22 18:09:29 UTC (rev 14321)
@@ -40,7 +40,7 @@
memset(_ci,0,sizeof(*_ci));
if(api!=NULL){
if(api->clear!=NULL)(*api->clear)(api);
- free(api);
+ _ogg_free(api);
}
}
More information about the commits
mailing list