diff options
| author | Rusty Wagner <rusty@vector35.com> | 2018-01-02 15:03:39 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-03-23 17:10:05 -0400 |
| commit | 1317f3136ca0fbc50e8eb81ca76a4d26f1161913 (patch) | |
| tree | aacf0e269af957c48f7f4cb921909f79f4268f0d /lowlevelilinstruction.cpp | |
| parent | 0dbe840fd4bb0b6f7beff6aad35ef8a83d4b5176 (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: |
