diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2020-02-04 11:30:57 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2020-02-04 11:30:57 +0100 |
commit | f55f0ae978afe2d9c474926d9a05fd517697c43c (patch) | |
tree | 9fe491188778cafc26eb62d192d62a24c93cdde8 /ext/curl/php_curl.h | |
parent | fabe6aa7dc35c10d0c034bec743631ec4a64b0d0 (diff) | |
parent | 2d0dec91a53bddbf9f9e09d9c58188515907d650 (diff) | |
download | php-git-f55f0ae978afe2d9c474926d9a05fd517697c43c.tar.gz |
Merge branch 'PHP-7.4'
* PHP-7.4:
Fix #79019: Copied cURL handles upload empty file
Diffstat (limited to 'ext/curl/php_curl.h')
-rw-r--r-- | ext/curl/php_curl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index 44a86bff8b..ec74e96956 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -181,6 +181,9 @@ typedef struct { struct _php_curl_error err; zend_bool in_callback; uint32_t* clone; +#if LIBCURL_VERSION_NUM >= 0x073800 /* 7.56.0 */ + zval postfields; +#endif } php_curl; #define CURLOPT_SAFE_UPLOAD -1 |