diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2019-03-11 16:28:46 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2019-03-11 16:30:16 +0100 |
commit | e7ce7c6bb211011569d8036b663bc4ccd45b9984 (patch) | |
tree | 783cad157c6310a1809fcef545e9873703da397a /ext/sqlite3/php_sqlite3.h | |
parent | 6818ca3c022d70bd48ac86df8798aa537245935c (diff) | |
parent | e93259bb23500e26a7b0317cde9ad5398eec074e (diff) | |
download | php-git-e7ce7c6bb211011569d8036b663bc4ccd45b9984.tar.gz |
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2:
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 6287d59c4f..693f17eb64 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 |