diff options
author | drh <drh@noemail.net> | 2015-05-05 17:12:27 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-05-05 17:12:27 +0000 |
commit | d689fd3a92428042a0784f7d8eb0fecda8921af8 (patch) | |
tree | 4d08293a03c01784935430d2c1caed449ad48bb3 /src/bitvec.c | |
parent | b9db90995254891621c116039cef50b5c3606db1 (diff) | |
parent | 0a96931b76e9b68e73d312bcc479d54b818a26cb (diff) | |
download | sqlite-d689fd3a92428042a0784f7d8eb0fecda8921af8.tar.gz sqlite-d689fd3a92428042a0784f7d8eb0fecda8921af8.zip |
Merge all trunk enhancements and fixes into the sessions branch.
FossilOrigin-Name: de7083cfe2bb00b689bec6bcc75e994f564ceda6
Diffstat (limited to 'src/bitvec.c')
-rw-r--r-- | src/bitvec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitvec.c b/src/bitvec.c index 52184aa96..c34897454 100644 --- a/src/bitvec.c +++ b/src/bitvec.c @@ -341,7 +341,7 @@ int sqlite3BitvecBuiltinTest(int sz, int *aOp){ ** bits to act as the reference */ pBitvec = sqlite3BitvecCreate( sz ); pV = sqlite3MallocZero( (sz+7)/8 + 1 ); - pTmpSpace = sqlite3_malloc(BITVEC_SZ); + pTmpSpace = sqlite3_malloc64(BITVEC_SZ); if( pBitvec==0 || pV==0 || pTmpSpace==0 ) goto bitvec_end; /* NULL pBitvec tests */ |