[xiph-commits] r16022 - trunk/ogg/src

xiphmont at svn.xiph.org xiphmont at svn.xiph.org
Wed May 20 17:03:11 PDT 2009


Author: xiphmont
Date: 2009-05-20 17:03:09 -0700 (Wed, 20 May 2009)
New Revision: 16022

Modified:
   trunk/ogg/src/bitwise.c
Log:
Correct a typo in the new oggpackB_writecheck that would have caused a 
stack overflow.



Modified: trunk/ogg/src/bitwise.c
===================================================================
--- trunk/ogg/src/bitwise.c	2009-05-20 14:45:23 UTC (rev 16021)
+++ trunk/ogg/src/bitwise.c	2009-05-21 00:03:09 UTC (rev 16022)
@@ -53,7 +53,7 @@
 }
 
 int oggpackB_writecheck(oggpack_buffer *b){
-  return oggpackB_writecheck(b);
+  return oggpack_writecheck(b);
 }
 
 void oggpack_writetrunc(oggpack_buffer *b,long bits){



More information about the commits mailing list