diff options
author | Hannes Magnusson <bjori@php.net> | 2011-09-12 09:16:04 +0000 |
---|---|---|
committer | Hannes Magnusson <bjori@php.net> | 2011-09-12 09:16:04 +0000 |
commit | e43c21e53afcbc09639f16100d342215b7ec19dd (patch) | |
tree | 67f39e3ee879f27dc6c6e7a864ab3a6ea4672799 /ext/curl/php_curl.h | |
parent | 8ed1dc2fa9a6c0a283371bb24314a2cccaceddf6 (diff) | |
download | php-git-e43c21e53afcbc09639f16100d342215b7ec19dd.tar.gz |
Fixed issues when streams were closed before curl read/write from them, or cleaning
Closing a original handle after copying it now no longer cleans up all resources (fixes missing CURLOPT_POSTFIELDS values among others)
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index d7cbb4051a..a50a2b8270 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -150,6 +150,7 @@ typedef struct { void _php_curl_cleanup_handle(php_curl *); void _php_curl_multi_cleanup_list(void *data); +int _php_curl_verify_handlers(php_curl *ch, int reporterror TSRMLS_DC); /* streams support */ |