25 Oct
2024
25 Oct
'24
1:31 p.m.
Nikolay Sivov (@nsivov) commented about dlls/mfplat/network.c:
+ ULONGLONG content_length; + ULONGLONG last_modified; + ULONGLONG content_range_start; + ULONGLONG content_range_end; + + BOOL buffering_enabled; + BOOL buffering; + + struct list downloaded_ranges; + HANDLE cache_file; + + ULONGLONG current_write_pos; + BOOL read_active; + DWORD bytes_read; + BYTE buffer[1024*1024]; +}; Could you try splitting this up? The file adds 2K lines at once.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/6733#note_86072