mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[KERNEL32] Convert default locales to actual locale identifiers, before passing to IsValidLocale(). Fixes corrupted file size strings in explorer.
[SHLWAPI] Fix some comments (As usual: "should be sent to wine") Patch by Rafal Harabień, <rafalh1992 AT o2 DOT pl> See issue #5557 for more details. svn path=/trunk/; revision=48482
This commit is contained in:
@@ -1044,8 +1044,10 @@ INT WINAPI GetNumberFormatW(LCID lcid, DWORD dwFlags,
|
||||
TRACE("(0x%04x,0x%08x,%s,%p,%p,%d)\n", lcid, dwFlags, debugstr_w(lpszValue),
|
||||
lpFormat, lpNumberStr, cchOut);
|
||||
|
||||
lcid = ConvertDefaultLocale(lcid);
|
||||
|
||||
if (!lpszValue || cchOut < 0 || (cchOut > 0 && !lpNumberStr) ||
|
||||
!IsValidLocale(lcid, 0) ||
|
||||
!IsValidLocale(lcid, LCID_INSTALLED) ||
|
||||
(lpFormat && (dwFlags || !lpFormat->lpDecimalSep || !lpFormat->lpThousandSep)))
|
||||
{
|
||||
goto error;
|
||||
@@ -1415,8 +1417,10 @@ INT WINAPI GetCurrencyFormatW(LCID lcid, DWORD dwFlags,
|
||||
TRACE("(0x%04x,0x%08x,%s,%p,%p,%d)\n", lcid, dwFlags, debugstr_w(lpszValue),
|
||||
lpFormat, lpCurrencyStr, cchOut);
|
||||
|
||||
lcid = ConvertDefaultLocale(lcid);
|
||||
|
||||
if (!lpszValue || cchOut < 0 || (cchOut > 0 && !lpCurrencyStr) ||
|
||||
!IsValidLocale(lcid, 0) ||
|
||||
!IsValidLocale(lcid, LCID_INSTALLED) ||
|
||||
(lpFormat && (dwFlags || !lpFormat->lpDecimalSep || !lpFormat->lpThousandSep ||
|
||||
!lpFormat->lpCurrencySymbol || lpFormat->NegativeOrder > 15 ||
|
||||
lpFormat->PositiveOrder > 3)))
|
||||
|
||||
@@ -91,7 +91,7 @@ static void FillNumberFmt(NUMBERFMTW *fmt, LPWSTR decimal_buffer, int decimal_bu
|
||||
* Format an integer according to the current locale
|
||||
*
|
||||
* RETURNS
|
||||
* The number of bytes written on success or 0 on failure
|
||||
* The number of characters written on success or 0 on failure
|
||||
*/
|
||||
static int FormatInt(LONGLONG qdwValue, LPWSTR pszBuf, int cchBuf)
|
||||
{
|
||||
@@ -124,7 +124,7 @@ static int FormatInt(LONGLONG qdwValue, LPWSTR pszBuf, int cchBuf)
|
||||
* after the decimal point
|
||||
*
|
||||
* RETURNS
|
||||
* The number of bytes written on success or 0 on failure
|
||||
* The number of characters written on success or 0 on failure
|
||||
*/
|
||||
static int FormatDouble(double value, int decimals, LPWSTR pszBuf, int cchBuf)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user