summaryrefslogtreecommitdiff
path: root/ext/curl/php_curl.h
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2004-03-11 00:11:18 +0000
committerIlia Alshanetsky <iliaa@php.net>2004-03-11 00:11:18 +0000
commit21a7e57ae732dbacc663d2bca21425afe5e21d94 (patch)
tree01e8f44a0eed0c44f2201ee1f8d05da5654909bf /ext/curl/php_curl.h
parenta5fec66463b6a82f1ca4ff01df769d797697f905 (diff)
downloadphp-git-21a7e57ae732dbacc663d2bca21425afe5e21d94.tar.gz
Fixed memory leak in the multi interface.
Fixed proto of curl_multi_exec(). Fixed crash in curl resource attached to curl multi resource is manually freed via curl_close().
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r--ext/curl/php_curl.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h
index ebd344758e..3e9b9e2cf8 100644
--- a/ext/curl/php_curl.h
+++ b/ext/curl/php_curl.h
@@ -125,6 +125,7 @@ typedef struct {
typedef struct {
int still_running;
CURLM *multi;
+ zend_llist easyh;
} php_curlm;
void _php_curl_cleanup_handle(php_curl *);