1
0
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:
drh
2009-11-13 17:05:53 +00:00
parent 5c03f30a9a
commit c54055bd25
4 changed files with 16 additions and 16 deletions

View File

@@ -3352,7 +3352,7 @@ int sqlite3BtreeCursor(
** this routine.
*/
int sqlite3BtreeCursorSize(void){
return sizeof(BtCursor);
return ROUND8(sizeof(BtCursor));
}
/*