X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_client_curl.c;h=9a6ce26d506872a321bf95b3e09d681d62d14898;hp=45515fa2686316497d184982fe76d95521eca955;hb=d109b3dd5c2d6856e0061bb4412d7fcad2822e5d;hpb=301589da4272ff7b2e3de6764f7c6290907a1a6b diff --git a/src/php_http_client_curl.c b/src/php_http_client_curl.c index 45515fa..9a6ce26 100644 --- a/src/php_http_client_curl.c +++ b/src/php_http_client_curl.c @@ -46,7 +46,7 @@ typedef struct php_http_client_curl_handler { php_http_buffer_t ranges; struct { - uint count; + uint32_t count; double delay; } retry; @@ -331,7 +331,9 @@ static ZEND_RESULT_CODE php_http_curle_get_info(CURL *ch, HashTable *info) long l = 0; double d = 0; struct curl_slist *s = NULL, *p = NULL; - zval tmp = {{0}}; + zval tmp; + + ZVAL_NULL(&tmp); /* BEGIN::CURLINFO */ if (CURLE_OK == curl_easy_getinfo(ch, CURLINFO_EFFECTIVE_URL, &c)) {