Skip to content

Commit 1c082c2

Browse files
committed
Simplify in a similar fashion
1 parent f68be97 commit 1c082c2

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
@@ -892,7 +892,7 @@ ZEND_API ZEND_INI_MH(OnUpdateStrNotEmpty) /* {{{ */
892892
}
893893

894894
zend_string **p = (zend_string **) ZEND_INI_GET_ADDR();
895-
*p = new_value ? new_value : NULL;
895+
*p = new_value;
896896
return SUCCESS;
897897
}
898898
/* }}} */

0 commit comments

Comments
 (0)