felipe                                   Thu, 10 Dec 2009 10:46:33 +0000

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

Log:
- Fix build

Changed paths:
    U   php/php-src/trunk/ext/standard/http_fopen_wrapper.c

Modified: php/php-src/trunk/ext/standard/http_fopen_wrapper.c
===================================================================
--- php/php-src/trunk/ext/standard/http_fopen_wrapper.c 2009-12-10 10:38:46 UTC 
(rev 291943)
+++ php/php-src/trunk/ext/standard/http_fopen_wrapper.c 2009-12-10 10:46:33 UTC 
(rev 291944)
@@ -654,7 +654,7 @@
                if (php_stream_get_line(stream, ZSTR(http_header_line), 
HTTP_HEADER_BLOCK_SIZE, &http_header_line_length) && *http_header_line != '\n' 
&& *http_header_line != '\r') {
                        char *e = http_header_line + http_header_line_length - 
1;
                        if (*e != '\n') { /* partial header */
-                               php_stream_get_line(stream, http_header_line, 
HTTP_HEADER_BLOCK_SIZE, &http_header_line_length);
+                               php_stream_get_line(stream, 
ZSTR(http_header_line), HTTP_HEADER_BLOCK_SIZE, &http_header_line_length);
                                continue;
                        }
                        while (*e == '\n' || *e == '\r') {

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

Reply via email to