1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Increase the size of bitvec objects to 1024 bytes on 64-bit systems.

FossilOrigin-Name: f1272b90f6078d301ab05592593e9415f2b2b90b
This commit is contained in:
drh
2009-09-09 12:41:17 +00:00
parent 0fe60783c1
commit 643a392270
3 changed files with 19 additions and 9 deletions

View File

@@ -39,7 +39,7 @@
#include "sqliteInt.h"
/* Size of the Bitvec structure in bytes. */
#define BITVEC_SZ 512
#define BITVEC_SZ (sizeof(void*)*128) /* 512 on 32bit. 1024 on 64bit */
/* Round the union size down to the nearest pointer boundary, since that's how
** it will be aligned within the Bitvec struct. */