CLI: bugfix: the output path was too small to be overwritten

This commit is contained in:
Maxime Meignan
2023-11-03 19:27:44 +01:00
committed by Maxime Meignan
parent 77953c60bd
commit 794dd9c254
+2 -1
View File
@@ -209,7 +209,8 @@ Dump options:\n\
TCHAR wdigestOffsetCSVPath[MAX_PATH] = { 0 }; TCHAR wdigestOffsetCSVPath[MAX_PATH] = { 0 };
TCHAR ciOffsetCSVPath[MAX_PATH] = { 0 }; TCHAR ciOffsetCSVPath[MAX_PATH] = { 0 };
TCHAR fltmgrOffsetCSVPath[MAX_PATH] = { 0 }; TCHAR fltmgrOffsetCSVPath[MAX_PATH] = { 0 };
TCHAR processName[] = TEXT("lsass.exe"); TCHAR processName[MAX_PATH];
_tcscpy_s(processName, _countof(processName), TEXT("lsass.exe"));
TCHAR outputPath[MAX_PATH] = { 0 }; TCHAR outputPath[MAX_PATH] = { 0 };
BOOL verbose = FALSE; BOOL verbose = FALSE;
BOOL removeVulnDriver = TRUE; BOOL removeVulnDriver = TRUE;