From 46d62e5464ece54066ae36b3fc567f0c5eb41640 Mon Sep 17 00:00:00 2001 From: Manuel Mausz Date: Fri, 21 Aug 2020 11:53:40 +0000 Subject: Fix wrong datatype ini_entry->modifiable is of type uint8_t and so should be the temp. variable. Especially important after 4b77a158. Closes GH-6028 --- Zend/zend_ini.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Zend/zend_ini.c') diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index b8185950ae..afc8f24e62 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -334,7 +334,7 @@ ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value, { zend_ini_entry *ini_entry; zend_string *duplicate; - zend_bool modifiable; + uint8_t modifiable; zend_bool modified; if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) { -- cgit v1.2.1