|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
  [2019-10-11 11:26 UTC] remi@php.net
 Description: ------------ Running icewind/streams test suite 1) Icewind\Streams\Tests\RetryWrapperTest::testFailedWrite fwrite(): \Icewind\Streams\Tests\FailWrapper::stream_write wrote -4 bytes more data than requested (-1 written, 3 max) PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 01:00:01 2025 UTC | 
Trivial fix: - if (didwrite > count) { + if (didwrite > 0 && didwrite > count) {