From fb69fee1f27c8c18ae6e1dae0d80e486b14b94f4 Mon Sep 17 00:00:00 2001 From: Manuel Mausz Date: Fri, 21 Aug 2020 11:53:40 +0000 Subject: [PATCH] Fix wrong datatype ini_entry->modifiable is of type uint8_t and so should be the temp. variable. Especially important after 4b77a158. --- Zend/zend_ini.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index b8185950ae235..afc8f24e62569 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) {