summaryrefslogtreecommitdiff
path: root/ext/sqlite3/php_sqlite3_structs.h
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-02-21 13:37:14 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2020-02-21 13:37:31 +0100
commit2a76e3a4571a7e31905a569580682e68cc003abb (patch)
tree2ed139553087ca9aa14737855ea3fe83b3cac83e /ext/sqlite3/php_sqlite3_structs.h
parent5a5680c25b3e6d758cc25268c89e0ceb04147ad7 (diff)
parentf133f0024ec801dc9636ee5bf84a93de1300d4b2 (diff)
downloadphp-git-2a76e3a4571a7e31905a569580682e68cc003abb.tar.gz
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix #79294: ::columnType() may fail after SQLite3Stmt::reset()
Diffstat (limited to 'ext/sqlite3/php_sqlite3_structs.h')
-rw-r--r--ext/sqlite3/php_sqlite3_structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/php_sqlite3_structs.h b/ext/sqlite3/php_sqlite3_structs.h
index f189ea30af..3de8aac0d4 100644
--- a/ext/sqlite3/php_sqlite3_structs.h
+++ b/ext/sqlite3/php_sqlite3_structs.h
@@ -108,7 +108,7 @@ struct _php_sqlite3_result_object {
zval stmt_obj_zval;
int is_prepared_statement;
- int complete;
+ int complete; // unused
zend_object zo;
};