29 Apr
2025
29 Apr
'25
3:03 p.m.
Rémi Bernon (@rbernon) commented about dlls/ntdll/unix/file.c:
static NTSTATUS cancel_io( HANDLE handle, IO_STATUS_BLOCK *io, IO_STATUS_BLOCK *io_status, BOOL only_thread ) { - unsigned int status; + unsigned int status, count = 8, size; + obj_handle_t *cancelled_handles; + HANDLE *handles; + int i; + + for (;;) + { + size = count * sizeof(*cancelled_handles);
size = count * sizeof(*handles);
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7797#note_102150