mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:54:13 +00:00
oleaut32: Avoid hardcoding array lengths.
This commit is contained in:
parent
520a92de33
commit
c55db752a2
1 changed files with 1 additions and 1 deletions
|
@ -6408,7 +6408,7 @@ static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFl
|
||||||
{
|
{
|
||||||
WCHAR *p;
|
WCHAR *p;
|
||||||
WCHAR numbuff[256];
|
WCHAR numbuff[256];
|
||||||
WCHAR empty[1] = {'\0'};
|
WCHAR empty[] = {'\0'};
|
||||||
NUMBERFMTW minFormat;
|
NUMBERFMTW minFormat;
|
||||||
|
|
||||||
minFormat.NumDigits = 0;
|
minFormat.NumDigits = 0;
|
||||||
|
|
Loading…
Reference in a new issue