X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=php_raphf.c;h=cb2352eafb16ae18165319caf3176c3517544cc3;hb=907b5fd8dae753b1bf0d123f8266dd12cb6e4b70;hp=811464b55e2980b98579fb69b65846e83b919a7a;hpb=484e626bee35fc8a26bc44a51afc9d0cdd0508c1;p=m6w6%2Fext-raphf diff --git a/php_raphf.c b/php_raphf.c index 811464b..cb2352e 100644 --- a/php_raphf.c +++ b/php_raphf.c @@ -384,14 +384,14 @@ void *php_persistent_handle_acquire(php_persistent_handle_factory_t *a, void *in { int key; zval *p; - ulong index; + zend_ulong index; void *handle = NULL; php_persistent_handle_list_t *list; list = php_persistent_handle_list_find(a->provider, a->ident.str, a->ident.len); if (list) { zend_hash_internal_pointer_end(&list->free); - key = zend_hash_get_current_key(&list->free, NULL, &index, 0); + key = zend_hash_get_current_key(&list->free, NULL, &index); p = zend_hash_get_current_data(&list->free); if (p && HASH_KEY_NON_EXISTENT != key) { handle = Z_PTR_P(p);