8 Nov
2022
8 Nov
'22
5:37 p.m.
Jacek Caban (@jacek) commented about dlls/wininet/http.c:
req->read_pos += read; }
+ if(read < size && req->hCacheFile) { + DWORD cache_pos, err; + while(read < size) {
There is no reason for the loop here, reading from regular file will return all available data anyway. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1268#note_13737