Skip to content

Commit 8f9f308

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix wrong datatype
2 parents 3877172 + 46d62e5 commit 8f9f308

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
@@ -321,7 +321,7 @@ ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value,
321321
{
322322
zend_ini_entry *ini_entry;
323323
zend_string *duplicate;
324-
zend_bool modifiable;
324+
uint8_t modifiable;
325325
zend_bool modified;
326326

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

0 commit comments

Comments
 (0)