diff options
author | Sterling Hughes <sterling@php.net> | 2001-06-25 15:14:20 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-06-25 15:14:20 +0000 |
commit | 021662752259de3107ba4d8632f4b820d2a6abd2 (patch) | |
tree | cbe2a7475d42fc6a62f3c78abb8bcddb8d6b7fce /ext/curl/php_curl.h | |
parent | 0f3e5a391478b822042226e81ac83edf67123c17 (diff) | |
download | php-git-021662752259de3107ba4d8632f4b820d2a6abd2.tar.gz |
@ Fixed a crash when using the CURLOPT_WRITEHEADER option. (Sterling)
# Folks please test, I've tested a limited amount of test cases, however,
# this change is far reaching, so I couldn't test all the necessary things
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 b530b92373..ef7dc6a1e1 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -68,8 +68,8 @@ typedef struct { typedef struct { php_curl_write *write; + php_curl_write *write_header; php_curl_read *read; - zval *write_header; zval *passwd; } php_curl_handlers; |