15 Jul
2023
15 Jul
'23
7:31 p.m.
Esme Povirk (@madewokherd) commented about dlls/gdiplus/tests/image.c:
return ret; }
+static const char * dbgstr_hexdata(const BYTE *data, UINT len) +{ + UINT i, offset = 0; + char buffer[1024] = {0}; + const UINT max_len = 340;
The buffers for holding temporary debug strings and line output are each 1020 bytes in size, so I think the maximum output here needs to be smaller. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3313#note_39084