Re: [PATCH v2 0/1] MR7594: msvcrt: Add _IONBF flag check in _filbuf to avoid dead loop in application which sets the flag.
17 Mar
2025
17 Mar
'25
1:24 p.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/file.c:
return EOF; }
- if(!(file->_flag & (_IOMYBUF | MSVCRT__USERBUF))) { + if(!(file->_flag & (_IONBF | _IOMYBUF | MSVCRT__USERBUF))) {
```suggestion:-0+0 if(!(file->_flag & (MSVCRT__NOBUF | _IOMYBUF | MSVCRT__USERBUF))) { ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7594#note_98086
278
Age (days ago)
278
Last active (days ago)
0 comments
1 participants
participants (1)
-
Piotr Caban (@piotr)