diff options
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3_structs.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h index 3de8aac0d4..80e915da68 100644 --- a/ext/sqlite3/php_sqlite3_structs.h +++ b/ext/sqlite3/php_sqlite3_structs.h @@ -1,7 +1,5 @@ /* +----------------------------------------------------------------------+ - | PHP Version 7 | - +----------------------------------------------------------------------+ | Copyright (c) The PHP Group | +----------------------------------------------------------------------+ | This source file is subject to version 3.01 of the PHP license, | @@ -73,6 +71,8 @@ typedef struct _php_sqlite3_db_object { sqlite3 *db; php_sqlite3_func *funcs; php_sqlite3_collation *collations; + zend_fcall_info authorizer_fci; + zend_fcall_info_cache authorizer_fcc; zend_bool exception; @@ -108,7 +108,6 @@ struct _php_sqlite3_result_object { zval stmt_obj_zval; int is_prepared_statement; - int complete; // unused zend_object zo; }; |