mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[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:
parent
8c0ffa6f18
commit
6f4d2924f0
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue