summaryrefslogtreecommitdiff
path: root/lowlevelilinstruction.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2018-01-02 15:03:39 -0500
committerRusty Wagner <rusty@vector35.com>2018-01-02 15:03:39 -0500
commitd8b25d611e29ade2aca70fc2a06ec8f93ae778f1 (patch)
treeaacf0e269af957c48f7f4cb921909f79f4268f0d /lowlevelilinstruction.cpp
parent9fc4766a507d5299cd4de78170c5798b02bb9698 (diff)
Fix incorrect handling of syscall IL
Diffstat (limited to 'lowlevelilinstruction.cpp')
-rw-r--r--lowlevelilinstruction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lowlevelilinstruction.cpp b/lowlevelilinstruction.cpp
index 8259426a..6b67ef72 100644
--- a/lowlevelilinstruction.cpp
+++ b/lowlevelilinstruction.cpp
@@ -1489,7 +1489,7 @@ void LowLevelILInstruction::VisitExprs(const std::function<bool(const LowLevelIL
i.VisitExprs(func);
break;
case LLIL_SYSCALL_SSA:
- for (auto& i : GetParameterExprs<LLIL_CALL_SSA>())
+ for (auto& i : GetParameterExprs<LLIL_SYSCALL_SSA>())
i.VisitExprs(func);
break;
case LLIL_RET: