mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[DRWTSN32] Use GetCommandLineW for CommandLineToArgvW.
Spotted by Hermès
This commit is contained in:
parent
a837694518
commit
bb5db143f0
1 changed files with 1 additions and 1 deletions
|
@ -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];
|
||||
|
|
Loading…
Reference in a new issue