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.