[WINESYNC] kernel32: Fixed handling LOCALE_NAME_USER_DEFAULT in GetLocaleInfoEx.

Signed-off-by: Jacek Caban <jacek@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 505406fc83b65dd1f9ebcbaabb582f0fabec1b0a by Jacek Caban <jacek@codeweavers.com>
This commit is contained in:
winesync 2024-04-25 19:51:57 +03:00 committed by Timo Kreuzer
parent 8c0ffa6f18
commit 6f4d2924f0

View file

@ -1790,7 +1790,7 @@ INT WINAPI GetLocaleInfoEx(LPCWSTR locale, LCTYPE info, LPWSTR buffer, INT len)
if (!lcid) return 0;
/* special handling for neutral locale names */
if (info == LOCALE_SNAME && strlenW(locale) == 2)
if (info == LOCALE_SNAME && locale && strlenW(locale) == 2)
{
if (len && len < 3)
{