diff options
author | Xinchen Hui <laruence@php.net> | 2015-08-23 13:01:47 +0800 |
---|---|---|
committer | Xinchen Hui <laruence@php.net> | 2015-08-23 13:01:47 +0800 |
commit | 4df6f2644252de00d70577c00a120ff674fee029 (patch) | |
tree | 24be14012fe63c4ea383de070c97b1b91f3c3287 /ext/curl/php_curl.h | |
parent | 55f88141c5a308ae507ef23606b190387e6c37dc (diff) | |
download | php-git-4df6f2644252de00d70577c00a120ff674fee029.tar.gz |
Fixed bug #70330 (Segmentation Fault with multiple "curl_copy_handle")
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index b3853ef6fd..50651340e7 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -181,7 +181,7 @@ typedef struct { struct _php_curl_send_headers header; struct _php_curl_error err; zend_bool in_callback; - uint32_t clone; + uint32_t* clone; } php_curl; #define CURLOPT_SAFE_UPLOAD -1 |