9 Feb
2024
9 Feb
'24
2:32 p.m.
eric pouech (@epo) commented about programs/cmd/wcmdmain.c:
} else break; }
- } while (*extraData == 0x00); + } while (WCMD_isEmptyOrJustWhiteSpace(extraData));
just to avoid to introduce a new function, you could perhaps do something like this instead: ``` extradata = WCMD_skip_leading_space(extraData); } while (*extraData == 0x00); ``` (the rest of the patches look good to me) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/277#note_60720