diff options
| author | Camille Mougey <commial@gmail.com> | 2015-12-04 17:50:09 +0100 |
|---|---|---|
| committer | Camille Mougey <commial@gmail.com> | 2015-12-04 17:50:09 +0100 |
| commit | 011cff5d574c7883e718627e22c6739d85bfd963 (patch) | |
| tree | 6effbbb81895b694526f5013ab26ef29b08b46b0 /example | |
| parent | d623ebfc823c3c02b487507adddc4519dad23513 (diff) | |
| parent | e3bc26d99ea8ed95a71693b5b9bd145194177fac (diff) | |
| download | miasm-011cff5d574c7883e718627e22c6739d85bfd963.tar.gz miasm-011cff5d574c7883e718627e22c6739d85bfd963.zip | |
Merge pull request #286 from serpilliere/updt_winseh
Updt winseh
Diffstat (limited to 'example')
| -rw-r--r-- | example/jitter/unpack_upx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/unpack_upx.py b/example/jitter/unpack_upx.py index f1f179b8..c329244e 100644 --- a/example/jitter/unpack_upx.py +++ b/example/jitter/unpack_upx.py @@ -43,7 +43,7 @@ parser.add_argument("--graph", help="Export the CFG graph in graph.dot", action="store_true") options = parser.parse_args() -sb = Sandbox_Win_x86_32(options.filename, options, globals()) +sb = Sandbox_Win_x86_32(options.filename, options, globals(), parse_reloc=False) if options.verbose is True: |