[xiph-commits] r18155 - branches/lowmem-no-byte/Tremor
xiphmont at svn.xiph.org
xiphmont at svn.xiph.org
Thu Jan 19 23:47:12 PST 2012
Author: xiphmont
Date: 2012-01-19 23:47:12 -0800 (Thu, 19 Jan 2012)
New Revision: 18155
Modified:
branches/lowmem-no-byte/Tremor/configure.in
branches/lowmem-no-byte/Tremor/floor1.c
Log:
Fix for Moz BZ #719612 for tremor-nobyte
Modified: branches/lowmem-no-byte/Tremor/configure.in
===================================================================
--- branches/lowmem-no-byte/Tremor/configure.in 2012-01-20 07:45:22 UTC (rev 18154)
+++ branches/lowmem-no-byte/Tremor/configure.in 2012-01-20 07:47:12 UTC (rev 18155)
@@ -11,7 +11,7 @@
AM_CONFIG_HEADER([config.h])
-AM_INIT_AUTOMAKE(libvorbisidec,1.2.0)
+AM_INIT_AUTOMAKE(libvorbisidec,1.2.1)
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
AM_MAINTAINER_MODE
@@ -19,7 +19,7 @@
dnl Library versioning
V_LIB_CURRENT=1
-V_LIB_REVISION=2
+V_LIB_REVISION=3
V_LIB_AGE=0
AC_SUBST(V_LIB_CURRENT)
AC_SUBST(V_LIB_REVISION)
Modified: branches/lowmem-no-byte/Tremor/floor1.c
===================================================================
--- branches/lowmem-no-byte/Tremor/floor1.c 2012-01-20 07:45:22 UTC (rev 18154)
+++ branches/lowmem-no-byte/Tremor/floor1.c 2012-01-20 07:47:12 UTC (rev 18155)
@@ -109,6 +109,7 @@
count=0;
for(j=0,k=0;j<info->partitions;j++){
count+=info->class[info->partitionclass[j]].class_dim;
+ if(count>VIF_POSIT)goto err_out;
for(;k<count;k++){
int t=info->postlist[k+2]=oggpack_read(opb,rangebits);
if(t>=(1<<rangebits))goto err_out;
More information about the commits
mailing list