From fc06d1bfb918a6860ec4d4da5bd01dd65f7da180 Mon Sep 17 00:00:00 2001 From: Monty Date: Thu, 21 May 2009 00:03:09 +0000 Subject: Correct a typo in the new oggpackB_writecheck that would have caused a stack overflow. git-svn-id: http://svn.xiph.org/trunk/ogg@16022 0101bb08-14d6-0310-b084-bc0e0c8e3800 --- src/bitwise.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/bitwise.c b/src/bitwise.c index 25cf862..4c88df5 100644 --- a/src/bitwise.c +++ b/src/bitwise.c @@ -53,7 +53,7 @@ int oggpack_writecheck(oggpack_buffer *b){ } int oggpackB_writecheck(oggpack_buffer *b){ - return oggpackB_writecheck(b); + return oggpack_writecheck(b); } void oggpack_writetrunc(oggpack_buffer *b,long bits){ -- cgit v1.2.1