Commit b32eb7b1 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

oleaut32: Use a string literal for an empty string.

parent 780ff812
...@@ -6469,7 +6469,7 @@ static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFl ...@@ -6469,7 +6469,7 @@ static BSTR VARIANT_BstrReplaceDecimal(const WCHAR * buff, LCID lcid, ULONG dwFl
{ {
WCHAR *p; WCHAR *p;
WCHAR numbuff[256]; WCHAR numbuff[256];
WCHAR empty[] = {'\0'}; WCHAR empty[] = L"";
NUMBERFMTW minFormat; NUMBERFMTW minFormat;
minFormat.NumDigits = 0; minFormat.NumDigits = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment