mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Force 8-byte memory alignment on memory allocated for VDBE cursors.
FossilOrigin-Name: bdc45ba77fb77771c8ff46b8d6c2dd29e6d3b019
This commit is contained in:
@@ -3352,7 +3352,7 @@ int sqlite3BtreeCursor(
|
||||
** this routine.
|
||||
*/
|
||||
int sqlite3BtreeCursorSize(void){
|
||||
return sizeof(BtCursor);
|
||||
return ROUND8(sizeof(BtCursor));
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user