We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da698e7 commit 7518e76Copy full SHA for 7518e76
highlevelilinstruction.cpp
@@ -1103,7 +1103,8 @@ void HighLevelILInstruction::CollectSubExprs(stack<size_t>& toProcess) const
1103
toProcess.push(GetConditionExpr<HLIL_SWITCH>().exprIndex);
1104
break;
1105
case HLIL_CASE:
1106
- toProcess.push(GetTrueExpr<HLIL_CASE>().exprIndex);
+ if (ast)
1107
+ toProcess.push(GetTrueExpr<HLIL_CASE>().exprIndex);
1108
exprs = GetValueExprs<HLIL_CASE>();
1109
for (auto i = exprs.rbegin(); i != exprs.rend(); ++i)
1110
toProcess.push(i->exprIndex);
0 commit comments