From 809dbcda08514357b03d05bb7449679d6dbcce4d Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Wed, 30 Sep 2009 02:34:17 +0000 Subject: Fixed bug #49517 (cURL's CURLOPT_FILE prevents file from being deleted after fclose). --- ext/curl/php_curl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/curl/php_curl.h') diff --git a/ext/curl/php_curl.h b/ext/curl/php_curl.h index f8229e9b6f..d50e722a43 100644 --- a/ext/curl/php_curl.h +++ b/ext/curl/php_curl.h @@ -86,6 +86,7 @@ typedef struct { smart_str buf; int method; int type; + zval *stream; } php_curl_write; typedef struct { @@ -94,6 +95,7 @@ typedef struct { FILE *fp; long fd; int method; + zval *stream; } php_curl_read; typedef struct { -- cgit v1.2.1