Skip to content

Commit 5210872

Browse files
committedSep 2, 2022
Regenerate optimizer func info after preprocessor condition changes
1 parent e733ebf commit 5210872

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Zend/Optimizer/zend_func_infos.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ static const func_info_t func_infos[] = {
518518
F1("gethostbyaddr", MAY_BE_STRING|MAY_BE_FALSE),
519519
F1("gethostbyname", MAY_BE_STRING),
520520
F1("gethostbynamel", MAY_BE_ARRAY|MAY_BE_ARRAY_KEY_LONG|MAY_BE_ARRAY_OF_STRING|MAY_BE_FALSE),
521-
#if defined(PHP_WIN32) || defined(HAVE_DNS_SEARCH_FUNC)
521+
#if (defined(PHP_WIN32) || defined(HAVE_DNS_SEARCH_FUNC))
522522
F1("dns_get_record", MAY_BE_ARRAY|MAY_BE_ARRAY_KEY_LONG|MAY_BE_ARRAY_OF_ARRAY|MAY_BE_FALSE),
523523
#endif
524524
F1("md5", MAY_BE_STRING),
@@ -621,7 +621,7 @@ static const func_info_t func_infos[] = {
621621
F1("php_ini_loaded_file", MAY_BE_STRING|MAY_BE_FALSE),
622622
F1("iptcembed", MAY_BE_STRING|MAY_BE_BOOL),
623623
F1("iptcparse", MAY_BE_ARRAY|MAY_BE_ARRAY_KEY_STRING|MAY_BE_ARRAY_OF_ARRAY|MAY_BE_FALSE),
624-
#if defined(HAVE_SYMLINK) || defined(PHP_WIN32)
624+
#if (defined(HAVE_SYMLINK) || defined(PHP_WIN32))
625625
F1("readlink", MAY_BE_STRING|MAY_BE_FALSE),
626626
#endif
627627
F1("decbin", MAY_BE_STRING),

0 commit comments

Comments
 (0)