diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c index 687450569bf6c..6064b42218327 100644 --- a/Zend/zend_hash.c +++ b/Zend/zend_hash.c @@ -2851,7 +2851,6 @@ ZEND_API zend_result ZEND_FASTCALL zend_hash_move_backwards_ex(const HashTable * } -/* This function should be made binary safe */ ZEND_API zend_hash_key_type ZEND_FASTCALL zend_hash_get_current_key_ex(const HashTable *ht, zend_string **str_index, zend_ulong *num_index, const HashPosition *pos) { uint32_t idx; diff --git a/ext/lexbor/php_lexbor.c b/ext/lexbor/php_lexbor.c index 9421af0884223..7f847bfb0afeb 100644 --- a/ext/lexbor/php_lexbor.c +++ b/ext/lexbor/php_lexbor.c @@ -72,7 +72,7 @@ zend_module_entry lexbor_module_entry = { NULL, /* per-request startup function */ NULL, /* per-request shutdown function */ PHP_MINFO(lexbor), /* information function */ - NULL, + PHP_VERSION, STANDARD_MODULE_PROPERTIES };