Skip to content
Snippets Groups Projects
Commit 8392a850 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

winedbg: Buffer size includes the quotes (coverity).

parent 0ca58612
No related branches found
No related tags found
No related merge requests found
......@@ -862,7 +862,7 @@ enum dbg_start dbg_active_minidump(int argc, char* argv[])
HANDLE hFile;
enum dbg_start ds = start_error_parse;
const char* file = NULL;
char tmp[8 + 1 + MAX_PATH]; /* minidump <file> */
char tmp[8 + 1 + 2 + MAX_PATH]; /* minidump "<file>" */
dbg_houtput = GetStdHandle(STD_ERROR_HANDLE);
DBG_IVAR(BreakOnDllLoad) = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment