diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-12-16 18:42:48 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-12-16 18:42:48 +0100 |
| commit | 4915549bfcb8c7a1870f51935337c6eb7c7cda29 (patch) | |
| tree | 9b6540b736f6163197fe8dd4ff066a27a638aff4 /miasm2/jitter/loader/pe.py | |
| parent | b998b1a8b2814585692e885e656c48357fbbb9b8 (diff) | |
| parent | 797b00e9449368448518ffa5497935569049c3ba (diff) | |
| download | miasm-4915549bfcb8c7a1870f51935337c6eb7c7cda29.tar.gz miasm-4915549bfcb8c7a1870f51935337c6eb7c7cda29.zip | |
Merge pull request #295 from cea-sec/fix_virt_api
Update api according to Elfesteem
Diffstat (limited to 'miasm2/jitter/loader/pe.py')
| -rw-r--r-- | miasm2/jitter/loader/pe.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/loader/pe.py b/miasm2/jitter/loader/pe.py index 32d92164..168a5e7d 100644 --- a/miasm2/jitter/loader/pe.py +++ b/miasm2/jitter/loader/pe.py @@ -70,7 +70,7 @@ def is_redirected_export(e, ad): # test is ad points to code or dll name out = '' for i in xrange(0x200): - c = e.virt(ad + i) + c = e.virt.get(ad + i) if c == "\x00": break out += c |