From 70830358c803f0458da3276f25b0aca60fab17e3 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Tue, 13 Sep 2022 15:31:41 -0700 Subject: [PATCH] Fixed BfConstType_ExtractValue failed case in WriteConstant --- IDEHelper/Compiler/CeMachine.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/IDEHelper/Compiler/CeMachine.cpp b/IDEHelper/Compiler/CeMachine.cpp index 07599669..f74acb25 100644 --- a/IDEHelper/Compiler/CeMachine.cpp +++ b/IDEHelper/Compiler/CeMachine.cpp @@ -4398,6 +4398,9 @@ bool CeContext::WriteConstant(BfModule* module, addr_ce addr, BfConstant* consta if (checkConstant->mConstType == BfConstType_AggCE) return WriteConstant(module, addr, checkConstant, type, isParams); + + // Unhandled + break; } }