oleaut32: Use a string literal for an empty string.

Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Michael Stefaniuc 2020-12-03 00:32:49 +01:00 committed by Alexandre Julliard
parent 780ff81227
commit b32eb7b191

View file

@ -6469,7 +6469,7 @@ static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFl
{
WCHAR *p;
WCHAR numbuff[256];
WCHAR empty[] = {'\0'};
WCHAR empty[] = L"";
NUMBERFMTW minFormat;
minFormat.NumDigits = 0;