diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index a1d696d7ae3..5d9f69cc577 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -63,13 +63,13 @@ typedef struct _php_sqlite3_collation { /* Structure for SQLite Database object. */ typedef struct _php_sqlite3_db_object { bool initialised; + bool exception; + sqlite3 *db; php_sqlite3_func *funcs; php_sqlite3_collation *collations; zend_fcall_info_cache authorizer_fcc; - bool exception; - zend_llist free_list; zend_object zo; } php_sqlite3_db_object;