16 Nov
2025
16 Nov
'25
10:42 a.m.
On Sun Nov 16 10:42:03 2025 +0000, Vijay Kiran Kamuju wrote:
rebase again and move the !buf check in the first patch to before the size check Thanks for having a looks.
Sorry to ask but you want the `!buf` to come first in the if conditions like this? ``` + if (!buf || *size < (len + 1) * sizeof(WCHAR)) + if (!buf || *size < len) ``` Or you like the `!buf` before the `if (!size)` in line 1970? But then we are not going to set the `*size` value? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8449#note_122467