From efdd26f86d3dbbde1626fe6a84304bc700b97479 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Mon, 23 Mar 2015 18:40:38 +0700 Subject: Scalable SOP manipulation package. --- src/misc/vec/vecBit.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc/vec/vecBit.h') diff --git a/src/misc/vec/vecBit.h b/src/misc/vec/vecBit.h index cb89e982..543a1258 100644 --- a/src/misc/vec/vecBit.h +++ b/src/misc/vec/vecBit.h @@ -124,7 +124,7 @@ static inline Vec_Bit_t * Vec_BitStartFull( int nSize ) { Vec_Bit_t * p; nSize = (nSize >> 5) + ((nSize & 31) > 0); - p = Vec_BitAlloc( nSize ); + p = Vec_BitAlloc( nSize * 32 ); p->nSize = nSize * 32; memset( p->pArray, 0xff, sizeof(int) * nSize ); return p; -- cgit v1.2.3