]> granicus.if.org Git - php/commitdiff
MFH: fix bug #32810 (fread after tmpfile() reads only 8192 bytes)
authorAntony Dovgal <tony2001@php.net>
Mon, 23 May 2005 11:52:44 +0000 (11:52 +0000)
committerAntony Dovgal <tony2001@php.net>
Mon, 23 May 2005 11:52:44 +0000 (11:52 +0000)
NEWS
main/streams.c

diff --git a/NEWS b/NEWS
index 953fdfe78978db1fad552db7e8aa4bdfcd867ec3..5401f8dd2f4bfdddc715860f487ab96073006d31 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -23,6 +23,7 @@ PHP 4                                                                      NEWS
 - Fixed bug #32932 (Oracle LDAP: ldap_get_entries invalid pointer). (Jani)
 - Fixed bug #32904 (pg_get_notify() ignores result_type parameter). (Tony)
 - Fixed bug #32813 (parse_url() does not handle scheme-only urls properly). (Ilia)
+- Fixed bug #32810 (fread after tmpfile() reads only 8192 bytes). (Tony)
 - Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia)
 - Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani)
 - Fixed bug #32773 (GMP functions break when second parameter is 0). (Stas)
index fe3575b8059917a9cbff13cacb9fdd010aa0467c..73465b5f36503818cc3f44f1e092f528d272f811 100755 (executable)
@@ -654,8 +654,9 @@ PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t size TSRMLS
                }
 
                /* just break anyway, to avoid greedy read */
-               if (stream->wrapper != &php_plain_files_wrapper)
+               if (stream->wrapper != NULL && stream->wrapper != &php_plain_files_wrapper) {
                        break;
+               }
        }
 
        if (didread > 0)