7 Jan
2024
7 Jan
'24
4:43 p.m.
Piotr Caban (@piotr) commented about dlls/msvcrt/tests/locale.c:
} }
+static DWORD WINAPI test_setlocale_threads_proc(void *arg) +{ + const char* locale = NULL; + if ((intptr_t)arg % 2) locale = "German_Germany.1252"; + setlocale(LC_NUMERIC, locale);
It still crashes for me when `setlocale(LC_NUMERIC, NULL)` calls are removed. It even seems to crash more often. ```suggestion:-2+0 setlocale(LC_NUMERIC, "German_Germany.1252"); ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/4654#note_56832