pajoye                                   Sat, 10 Oct 2009 09:29:34 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=289496

Log:
- Merge: Fixed bug #49517 (cURL's CURLOPT_FILE prevents file from being deleted 
after fclose)

Bug: http://bugs.php.net/49517 (Closed) cURL's CURLOPT_FILE prevents file from 
being deleted after fclose
      
Changed paths:
    U   php/php-src/branches/PHP_5_3_1/ext/curl/php_curl.h

Modified: php/php-src/branches/PHP_5_3_1/ext/curl/php_curl.h
===================================================================
--- php/php-src/branches/PHP_5_3_1/ext/curl/php_curl.h  2009-10-10 09:24:59 UTC 
(rev 289495)
+++ php/php-src/branches/PHP_5_3_1/ext/curl/php_curl.h  2009-10-10 09:29:34 UTC 
(rev 289496)
@@ -86,6 +86,7 @@
        smart_str       buf;
        int             method;
        int             type;
+       zval            *stream;
 } php_curl_write;

 typedef struct {
@@ -94,6 +95,7 @@
        FILE            *fp;
        long            fd;
        int             method;
+       zval            *stream;
 } php_curl_read;

 typedef struct {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to