You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2018. It is now read-only.
Writing an empty buffer to stdout from node caused a ReadFile call on the other end of the pipe to return FALSE and then triggered an assert in node. This only seems to happen if the pipe is being read from synchronously -- overlapped IO worked fine. The most likely suspect looks like WriteFile being called with nNumberOfBytesToWrite = 0.
A value of zero specifies a null write operation. The behavior of a null write operation depends on the underlying file system or communications technology.
The null write operation here seems to be closing the stream.
The text was updated successfully, but these errors were encountered:
Writing an empty buffer to stdout from node caused a ReadFile call on the other end of the pipe to return FALSE and then triggered an assert in node. This only seems to happen if the pipe is being read from synchronously -- overlapped IO worked fine. The most likely suspect looks like WriteFile being called with nNumberOfBytesToWrite = 0.
Quoth msdn:
The null write operation here seems to be closing the stream.
The text was updated successfully, but these errors were encountered: