mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix the fix for #68884
This commit is contained in:
parent
388624d359
commit
cb6fb59b59
1 changed files with 1 additions and 1 deletions
|
@ -256,7 +256,7 @@ U_CFUNC zend_function *IntlPartsIterator_get_method(zend_object **object_ptr, ze
|
|||
}
|
||||
|
||||
if (method->len == sizeof("getrulestatus") - 1
|
||||
&& memcmp("getrulestatus", lc_method_name->val, method->len) == 0) {
|
||||
&& memcmp("getrulestatus", lc_method_name->val, lc_method_name->len) == 0) {
|
||||
IntlIterator_object *obj = php_intl_iterator_fetch_object(*object_ptr);
|
||||
if (obj->iterator && !Z_ISUNDEF(obj->iterator->data)) {
|
||||
zval *break_iter_zv = &obj->iterator->data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue