diff options
author | Antony Dovgal <tony2001@php.net> | 2005-05-23 15:36:58 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2005-05-23 15:36:58 +0000 |
commit | d4db964aeddd474e9448eca17d0e61b1e65048dc (patch) | |
tree | eb4eef531059322801f4a496840a1c8c27f554de | |
parent | b841969760bce6ce85eb2a30b2a0757dcd99d8c0 (diff) | |
download | php-git-d4db964aeddd474e9448eca17d0e61b1e65048dc.tar.gz |
revert by Wez's request
-rwxr-xr-x | main/streams/streams.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/streams.c b/main/streams/streams.c index c1d7cb34e1..8b0ee5a3d2 100755 --- a/main/streams/streams.c +++ b/main/streams/streams.c @@ -603,7 +603,7 @@ 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 != NULL && stream->wrapper != &php_plain_files_wrapper) { + if (stream->wrapper != &php_plain_files_wrapper) { break; } } |