]> granicus.if.org Git - php/commitdiff
Fixed bug #49851 (http wrapper breaks on 1024 char long headers).
authorIlia Alshanetsky <iliaa@php.net>
Thu, 10 Dec 2009 03:23:05 +0000 (03:23 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Thu, 10 Dec 2009 03:23:05 +0000 (03:23 +0000)
ext/standard/http_fopen_wrapper.c

index 630976b90a55748ebe1060192c504c844a94f116..23565652cba4154b6b8717307da54d2c3323c4b7 100644 (file)
@@ -653,6 +653,10 @@ php_stream *php_stream_url_wrap_http_ex(php_stream_wrapper *wrapper, char *path,
                size_t http_header_line_length;
                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);
+                               continue;
+                       }
                        while (*e == '\n' || *e == '\r') {
                                e--;
                        }