diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2020-12-26 00:03:54 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-26 00:03:54 +0100 |
| commit | 1673c3eb29d88cbd7b642419c197fa0993ca5871 (patch) | |
| tree | b5489af2d481c9db7f3c530d3b1634031cfbd4d5 /miasm/os_dep/linux_stdlib.py | |
| parent | 931a7d95bf48ec35b9c69b4e22b890f512164a9b (diff) | |
| parent | 1d95a7febaee8c53df432cdbf1539f6f58a4d5d9 (diff) | |
| download | focaccia-miasm-1673c3eb29d88cbd7b642419c197fa0993ca5871.tar.gz focaccia-miasm-1673c3eb29d88cbd7b642419c197fa0993ca5871.zip | |
Merge pull request #1335 from serpilliere/rename_ir_arch
Rename ir arch
Diffstat (limited to 'miasm/os_dep/linux_stdlib.py')
| -rw-r--r-- | miasm/os_dep/linux_stdlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm/os_dep/linux_stdlib.py b/miasm/os_dep/linux_stdlib.py index 348ef9b4..f0c708ba 100644 --- a/miasm/os_dep/linux_stdlib.py +++ b/miasm/os_dep/linux_stdlib.py @@ -74,7 +74,7 @@ def xxx___libc_start_main(jitter): main = args.main # done by __libc_init_first - size = jitter.ir_arch.pc.size // 8 + size = jitter.lifter.pc.size // 8 argc = args.argc argv = args.ubp_av envp = argv + (args.argc + 1) * size |