diff options
author | drh <drh@noemail.net> | 2015-04-29 16:50:28 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2015-04-29 16:50:28 +0000 |
commit | f3cdcdccbeedd4de04d74eb95ecc244eb90e4082 (patch) | |
tree | f79e86511e5347f496fb87be780a37e125f29e15 /src/bitvec.c | |
parent | b4a91a9a8859fc021ec4d3de08eb49a257d62a14 (diff) | |
download | sqlite-f3cdcdccbeedd4de04d74eb95ecc244eb90e4082.tar.gz sqlite-f3cdcdccbeedd4de04d74eb95ecc244eb90e4082.zip |
Use sqlite3_malloc64() in place of sqlite3_malloc() internally.
FossilOrigin-Name: 48f553b05c05373c0af4b9c3a542979db3a2ee19
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 */ |