Commit 24ac30d2 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

regsvr32: Use a string literal for an empty string.

parent b32eb7b1
......@@ -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);
......
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