We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed5d085 commit 425a531Copy full SHA for 425a531
src/dbg/debugger.cpp
@@ -1343,13 +1343,13 @@ static void cbCreateProcess(CREATE_PROCESS_DEBUG_INFO* CreateProcessInfo)
1343
// Parse the command line from the debuggee
1344
int argc = 0;
1345
wchar_t** argv = CommandLineToArgvW(StringUtils::Utf8ToUtf16(cmdline).c_str(), &argc);
1346
- LocalFree(argv);
1347
1348
// Print the command line to the log
1349
dprintf_untranslated(" %s\n", cmdline);
1350
for(int i = 0; i < argc; i++)
1351
dprintf_untranslated(" argv[%i]: %s\n", i, StringUtils::Utf16ToUtf8(argv[i]).c_str());
1352
+ LocalFree(argv);
1353
efree(cmdline);
1354
}
1355
0 commit comments