aboutsummaryrefslogtreecommitdiff
path: root/Application/EfiDSEFix
diff options
context:
space:
mode:
authorMatthijs Lavrijsen <mattiwatti@gmail.com>2023-03-13 00:11:08 +0100
committerMatthijs Lavrijsen <mattiwatti@gmail.com>2023-03-13 00:11:08 +0100
commitdea33fff9fa32be74bb18f9404e64c93418342af (patch)
treee9407414a5250190ed770e2d4f56037b3fc776d2 /Application/EfiDSEFix
parent4ad9836d580854fd11cab10821a8c492d9c22c34 (diff)
Misc. warning fixes
Diffstat (limited to 'Application/EfiDSEFix')
-rw-r--r--Application/EfiDSEFix/src/EfiDSEFix.cpp4
-rw-r--r--Application/EfiDSEFix/src/main.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/Application/EfiDSEFix/src/EfiDSEFix.cpp b/Application/EfiDSEFix/src/EfiDSEFix.cpp
index 9e68bfb..dd315ed 100644
--- a/Application/EfiDSEFix/src/EfiDSEFix.cpp
+++ b/Application/EfiDSEFix/src/EfiDSEFix.cpp
@@ -192,8 +192,8 @@ AnalyzeCi(
// Map file as SEC_IMAGE
WCHAR Path[MAX_PATH];
- const CHAR NtoskrnlExe[] = "ntoskrnl.exe";
- const CHAR CiDll[] = "CI.dll";
+ constexpr CHAR NtoskrnlExe[] = "ntoskrnl.exe";
+ constexpr CHAR CiDll[] = "CI.dll";
_snwprintf(Path, MAX_PATH / sizeof(WCHAR), L"%ls\\System32\\%hs",
SharedUserData->NtSystemRoot,
diff --git a/Application/EfiDSEFix/src/main.cpp b/Application/EfiDSEFix/src/main.cpp
index fe1e6aa..3ac8ed5 100644
--- a/Application/EfiDSEFix/src/main.cpp
+++ b/Application/EfiDSEFix/src/main.cpp
@@ -227,7 +227,7 @@ NtProcessStartupW(
Peb = Peb != nullptr ? NtCurrentPeb() : NtCurrentTeb()->ProcessEnvironmentBlock; // And this turd is to get Resharper to shut up about assigning to Peb before reading from it. Note LHS == RHS
// Get the command line from the startup parameters. If there isn't one, use the executable name
- PRTL_USER_PROCESS_PARAMETERS Params = RtlNormalizeProcessParams(Peb->ProcessParameters);
+ const PRTL_USER_PROCESS_PARAMETERS Params = RtlNormalizeProcessParams(Peb->ProcessParameters);
const PWCHAR CommandLineBuffer = Params->CommandLine.Buffer == nullptr || Params->CommandLine.Buffer[0] == L'\0'
? Params->ImagePathName.Buffer
: Params->CommandLine.Buffer;