Oct. 31, 2025
3:45 p.m.
eric pouech (@epo) commented about programs/xcopy/xcopy.c:
copyFrom, copyTo, error); XCOPY_FailMessage(error);
- if (flags & OPT_IGNOREERRORS) { - skipFile = TRUE; - } else { + skipFile = TRUE; + if (!(flags & OPT_IGNOREERRORS)) { ret = RC_WRITEERROR; - goto cleanup;
good catch for the resource leak that gets fixed but that could even deserve a separate commit in the MR as this is orthogonal to the rest of the changes -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9112#note_120279