diff options
| author | Peter LaFosse <peter@vector35.com> | 2024-10-21 10:51:36 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2024-10-23 20:37:38 -0400 |
| commit | c446e3acbcb0dc750a840551fa7cb54c184e7acb (patch) | |
| tree | ebf78f05d05f4e577d1e91d646be6a7f6e4c5d23 /view/pe | |
| parent | 2214557964551956750203029321329689282546 (diff) | |
Fix conditional no-return
Diffstat (limited to 'view/pe')
| -rw-r--r-- | view/pe/peview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/pe/peview.cpp b/view/pe/peview.cpp index e299b0e5..ecf4a42b 100644 --- a/view/pe/peview.cpp +++ b/view/pe/peview.cpp @@ -2807,7 +2807,7 @@ bool PEView::Init() GetSymbolByRawName("_TerminateProcess@8", GetExternalNameSpace()))) { // TerminateProcess is imported and this is a user mode file - programSettings->Set("corePlugins.workflows.conditionalNoReturn", true); + programSettings->Set("core.function.analyzeConditionalNoReturns", true); } // Add a symbol for the entry point |
