Commit 0f52459b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Win32: FromLocale/ToLocale: fix stack underflow on very long strings

parent c0bbe73c
......@@ -118,17 +118,18 @@ static char *locale_fast (const char *string, bool from)
len = 1 + MultiByteToWideChar (from ? CP_ACP : CP_UTF8,
0, string, -1, NULL, 0);
wchar_t wide[len];
wchar_t *wide = malloc (len * sizeof (wchar_t));
if (wide == NULL)
return NULL;
MultiByteToWideChar (from ? CP_ACP : CP_UTF8, 0, string, -1, wide, len);
len = 1 + WideCharToMultiByte (from ? CP_UTF8 : CP_ACP, 0, wide, -1,
NULL, 0, NULL, NULL);
out = malloc (len);
if (out == NULL)
return NULL;
if (out != NULL)
WideCharToMultiByte (from ? CP_UTF8 : CP_ACP, 0, wide, -1, out, len,
NULL, NULL);
free (wide);
return out;
#else
(void)from;
......
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