diff options
author | Remi Collet <remi@php.net> | 2013-04-02 16:24:00 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2013-04-02 16:24:00 +0200 |
commit | 8e8a75444cbb6bb108e212d48513343fe21c9255 (patch) | |
tree | 61f558fa744ca486dd709f8c1e5f62664d682356 /main | |
parent | 6b4148bc9705d2668dd8589009215a8eb3076f31 (diff) | |
download | php-git-8e8a75444cbb6bb108e212d48513343fe21c9255.tar.gz |
fix comment
Diffstat (limited to 'main')
-rw-r--r-- | main/streams/streams.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/main/streams/streams.c b/main/streams/streams.c index 39e231dbb6..7bc4c9ddb5 100644 --- a/main/streams/streams.c +++ b/main/streams/streams.c @@ -1535,9 +1535,7 @@ PHPAPI int _php_stream_copy_to_stream_ex(php_stream *src, php_stream *dest, size *len = didwrite; - /* we've got at least 1 byte to read. - * less than 1 is an error */ - + /* read bytes match written */ if (mapped == didwrite) { return SUCCESS; } |