ntdll: Add missing LC_NUMERIC locale setting to init_locale.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49489
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49417
Signed-off-by: Thomas Crider <gloriouseggroll@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Thomas Crider 2020-07-05 11:16:06 -06:00 committed by Alexandre Julliard
parent 6bfd79be6d
commit 031c744a1f
1 changed files with 1 additions and 0 deletions

View File

@ -943,6 +943,7 @@ static void init_locale(void)
if (preferred_langs) CFRelease( preferred_langs );
}
#endif
setlocale( LC_NUMERIC, "C" ); /* FIXME: oleaut32 depends on this */
}