Commit 8bed3b6f authored by Daniel Lehman's avatar Daniel Lehman Committed by Alexandre Julliard

libwine: Use larger buffer in vsnprintfW for large numbers.

parent e0f1bac4
......@@ -351,7 +351,7 @@ int vsnprintfW(WCHAR *str, size_t len, const WCHAR *format, va_list valist)
{
unsigned int written = 0;
const WCHAR *iter = format;
char bufa[256], fmtbufa[64], *fmta;
char bufa[512], fmtbufa[64], *fmta;
while (*iter)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment