diff options
| author | Rusty Wagner <rusty@vector35.com> | 2018-01-02 15:03:39 -0500 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2018-01-02 15:03:39 -0500 |
| commit | d8b25d611e29ade2aca70fc2a06ec8f93ae778f1 (patch) | |
| tree | aacf0e269af957c48f7f4cb921909f79f4268f0d /lowlevelilinstruction.cpp | |
| parent | 9fc4766a507d5299cd4de78170c5798b02bb9698 (diff) | |
Fix incorrect handling of syscall IL
Diffstat (limited to 'lowlevelilinstruction.cpp')
| -rw-r--r-- | lowlevelilinstruction.cpp | 2 |
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: |
