diff options
| author | Glenn Smith <glenn@vector35.com> | 2025-06-17 22:01:06 -0400 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2025-07-01 12:51:05 -0400 |
| commit | 1e23ec1a78885fc952e27bf41cee1d5c59b7dbca (patch) | |
| tree | 8a2b889b6a18e5a9268471cff1acf124539eebd8 /python | |
| parent | 8e1dbdaadba08c7c4be6408315d668decb7bc5d4 (diff) | |
Python: Fix detailed_operands on *callUntyped
Diffstat (limited to 'python')
| -rw-r--r-- | python/mediumlevelil.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index 95cc72ab..fb397213 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -2229,7 +2229,7 @@ class MediumLevelILSyscallUntyped(MediumLevelILCallBase, Syscall): def detailed_operands(self) -> List[Tuple[str, MediumLevelILOperandType, str]]: return [ ('output', self.output, 'List[Variable]'), - ('params', self.params, 'List[Variable]'), + ('params', self.params, 'List[MediumLevelILInstruction]'), ('stack', self.stack, 'MediumLevelILInstruction'), ] @@ -2729,7 +2729,7 @@ class MediumLevelILTailcallUntyped(MediumLevelILCallBase, Tailcall): return [ ('output', self.output, 'List[Variable]'), ('dest', self.dest, 'MediumLevelILInstruction'), - ('params', self.params, 'List[Variable]'), + ('params', self.params, 'List[MediumLevelILInstruction]'), ('stack', self.stack, 'MediumLevelILInstruction'), ] @@ -2979,7 +2979,7 @@ class MediumLevelILCallUntyped(MediumLevelILCallBase, Localcall): return [ ('output', self.output, 'List[Variable]'), ('dest', self.dest, 'MediumLevelILInstruction'), - ('params', self.params, 'List[Variable]'), + ('params', self.params, 'List[MediumLevelILInstruction]'), ('stack', self.stack, 'MediumLevelILInstruction'), ] |
