Fix an uninitialized flag in streams, that make watching real files from reading incorrectly raise the Read event.
[INTERPRETER] * BUG: Fix an uninitialized flag in streams, that make watching real files from reading incorrectly raise the Read event.
This commit is contained in:
parent
0af0699faa
commit
3c8c5a2243
1 changed files with 1 additions and 0 deletions
|
@ -232,6 +232,7 @@ __OPEN:
|
|||
stream->common.available_now = FALSE;
|
||||
stream->common.redirected = FALSE;
|
||||
stream->common.redirect = NULL;
|
||||
stream->common.no_read_ahead = FALSE;
|
||||
|
||||
if ((*(sclass->open))(stream, path, mode, NULL))
|
||||
THROW_SYSTEM(errno, path);
|
||||
|
|
Loading…
Reference in a new issue