X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_client_curl.c;h=78c552a2ce723dbd8d9ea76edf8dbe08482ab129;hp=4634b794ad52c46863d66e0fbc3289b4d5f0bac3;hb=dbb10c775e24bf591305aa5b3946d4e94a500530;hpb=1fc9ec679704d02aa92f7c97b41ab633168c2718 diff --git a/php_http_client_curl.c b/php_http_client_curl.c index 4634b79..78c552a 100644 --- a/php_http_client_curl.c +++ b/php_http_client_curl.c @@ -2117,7 +2117,7 @@ static php_resource_factory_t *create_rf(php_http_client_t *h, php_http_client_e } /* only if the client itself is setup for persistence */ - if (h->rf->dtor == (void (*)(void*)) php_persistent_handle_abandon) { + if (php_resource_factory_is_persistent(h->rf)) { char *id_str = NULL; size_t id_len; int port = url->port ? url->port : 80; @@ -2138,7 +2138,7 @@ static php_resource_factory_t *create_rf(php_http_client_t *h, php_http_client_e } if (pf) { - rf = php_resource_factory_init(NULL, php_persistent_handle_get_resource_factory_ops(), pf, (void (*)(void*)) php_persistent_handle_abandon); + rf = php_persistent_handle_resource_factory_init(NULL, pf); } else { rf = php_resource_factory_init(NULL, &php_http_curle_resource_factory_ops, NULL, NULL); }