From c8fd78317902f80084a626d20aa3dfeb12572b65 Mon Sep 17 00:00:00 2001
From: Alexandre Julliard <julliard@winehq.org>
Date: Tue, 3 May 2022 10:33:21 +0200
Subject: [PATCH] oleaut32: Use the locale leading zero flag instead of
 hardcoding it.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
---
 dlls/oleaut32/vartype.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dlls/oleaut32/vartype.c b/dlls/oleaut32/vartype.c
index 3850fec7066..bc8bd0d2197 100644
--- a/dlls/oleaut32/vartype.c
+++ b/dlls/oleaut32/vartype.c
@@ -6512,12 +6512,14 @@ static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFl
     NUMBERFMTW minFormat;
 
     minFormat.NumDigits = 0;
-    minFormat.LeadingZero = 0;
     minFormat.Grouping = 0;
     minFormat.lpDecimalSep = lpDecimalSep;
     minFormat.lpThousandSep = empty;
     minFormat.NegativeOrder = 1; /* NLS_NEG_LEFT */
 
+    GetLocaleInfoW(lcid, LOCALE_ILZERO | LOCALE_RETURN_NUMBER | (dwFlags & LOCALE_NOUSEROVERRIDE),
+                   (WCHAR *)&minFormat.LeadingZero, sizeof(DWORD)/sizeof(WCHAR) );
+
     /* count number of decimal digits in string */
     p = wcschr( buff, '.' );
     if (p) minFormat.NumDigits = lstrlenW(p + 1);
-- 
2.24.1