[DRWTSN32] Use GetCommandLineW for CommandLineToArgvW.

Spotted by Hermès
This commit is contained in:
Mark Jansen 2018-05-13 23:22:56 +02:00
parent a837694518
commit bb5db143f0
No known key found for this signature in database
GPG key ID: B39240EE84BEAE8B

View file

@ -253,7 +253,7 @@ HRESULT WriteMinidump(LPCWSTR LogFilePath, DumpData& data)
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, LPWSTR cmdLine, INT)
{
int argc;
WCHAR **argv = CommandLineToArgvW(cmdLine, &argc);
WCHAR **argv = CommandLineToArgvW(GetCommandLineW(), &argc);
DWORD pid = 0;
WCHAR Filename[50];