Pack _php_sqlite3_db_object

This commit is contained in:
Niels Dossche 2025-02-10 08:43:35 +01:00
parent 9ee08999f4
commit 2acda557cd

View file

@ -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;