Commit 25869075 authored by Esme Povirk's avatar Esme Povirk Committed by Alexandre Julliard

mscoree: Don't trace arguments in CorExeMain.

This can overflow the debug buffer. We could print each argument on an individual line, but command-line arguments can be obtained other ways and turned out to usually not be useful. Signed-off-by: 's avatarEsme Povirk <esme@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent b340956e
......@@ -1441,10 +1441,7 @@ __int32 WINAPI _CorExeMain(void)
GetModuleFileNameW(NULL, filename, MAX_PATH);
TRACE("%s", debugstr_w(filename));
for (i=0; i<argc; i++)
TRACE(" %s", debugstr_a(argv[i]));
TRACE("\n");
TRACE("%s argc=%i\n", debugstr_w(filename), argc);
filenameA = WtoA(filename);
if (!filenameA)
......
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