regsvr32: 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:50 +01:00 committed by Alexandre Julliard
parent b32eb7b191
commit 24ac30d2a0
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ int __cdecl wmain(int argc, WCHAR* argv[])
BOOL Unregister = FALSE;
BOOL DllFound = FALSE;
WCHAR* wsCommandLine = NULL;
WCHAR EmptyLine[1] = {0};
WCHAR EmptyLine[] = L"";
OleInitialize(NULL);