From 2acda557cd83fd72bc8dbe3756d29dbe779f7249 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Mon, 10 Feb 2025 08:43:35 +0100 Subject: [PATCH] Pack _php_sqlite3_db_object --- ext/sqlite3/php_sqlite3_structs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;