diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2019-03-11 16:31:26 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-03-11 16:31:26 +0100 |
commit | aefe0dfd61fa8b1f7e32eaa688f81a76a6956649 (patch) | |
tree | 8402f0cf90ebdae8da8f2bcd305606e5d77614dd /ext/sqlite3/php_sqlite3.h | |
parent | cc354a079073061336d8824eebba85042a0de104 (diff) | |
parent | e7ce7c6bb211011569d8036b663bc4ccd45b9984 (diff) | |
download | php-git-aefe0dfd61fa8b1f7e32eaa688f81a76a6956649.tar.gz |
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3:
SQLite3: add DEFENSIVE config for SQLite >= 3.26.0 as a mitigation strategy against potential security flaws
Diffstat (limited to 'ext/sqlite3/php_sqlite3.h')
-rw-r--r-- | ext/sqlite3/php_sqlite3.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/sqlite3/php_sqlite3.h b/ext/sqlite3/php_sqlite3.h index cfb3327d71..411c4eb0ba 100644 --- a/ext/sqlite3/php_sqlite3.h +++ b/ext/sqlite3/php_sqlite3.h @@ -26,6 +26,7 @@ extern zend_module_entry sqlite3_module_entry; ZEND_BEGIN_MODULE_GLOBALS(sqlite3) char *extension_dir; + int dbconfig_defensive; ZEND_END_MODULE_GLOBALS(sqlite3) #ifdef ZTS |