Skip to content

Commit 64ddf44

Browse files
committed
revert by Wez's request
1 parent 1650db9 commit 64ddf44

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

NEWS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ PHP 4 NEWS
2323
- Fixed bug #32932 (Oracle LDAP: ldap_get_entries invalid pointer). (Jani)
2424
- Fixed bug #32904 (pg_get_notify() ignores result_type parameter). (Tony)
2525
- Fixed bug #32813 (parse_url() does not handle scheme-only urls properly). (Ilia)
26-
- Fixed bug #32810 (fread after tmpfile() reads only 8192 bytes). (Tony)
2726
- Fixed bug #32802 (General cookie overrides more specific cookie). (Ilia)
2827
- Fixed bugs #32800, #32830 (ext/odbc: Problems with 64bit systems). (Jani)
2928
- Fixed bug #32773 (GMP functions break when second parameter is 0). (Stas)

main/streams.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,7 +654,7 @@ PHPAPI size_t _php_stream_read(php_stream *stream, char *buf, size_t size TSRMLS
654654
}
655655

656656
/* just break anyway, to avoid greedy read */
657-
if (stream->wrapper != NULL && stream->wrapper != &php_plain_files_wrapper) {
657+
if (stream->wrapper != &php_plain_files_wrapper) {
658658
break;
659659
}
660660
}

0 commit comments

Comments
 (0)