Skip to content

Commit 46d62e5

Browse files
manuelmcmb69
authored andcommitted
Fix wrong datatype
ini_entry->modifiable is of type uint8_t and so should be the temp. variable. Especially important after 4b77a15. Closes GH-6028
1 parent f7c43b8 commit 46d62e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_ini.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value,
334334
{
335335
zend_ini_entry *ini_entry;
336336
zend_string *duplicate;
337-
zend_bool modifiable;
337+
uint8_t modifiable;
338338
zend_bool modified;
339339

340340
if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) {

0 commit comments

Comments
 (0)