about summary refs log tree commit diff stats
path: root/example
diff options
context:
space:
mode:
authorCamille Mougey <commial@gmail.com>2018-11-09 09:22:19 +0100
committerGitHub <noreply@github.com>2018-11-09 09:22:19 +0100
commit7ca62062fe1321c4b151a53530423952b5535d10 (patch)
tree18b1a434ed22f657b6c85ebb0a74c4ece9e94d42 /example
parentbfbefac9c6f7acfd0356a5b6cd59ff0893abce4d (diff)
parent80744d14e4711383b0d9c9b90a6e68971abef411 (diff)
downloadmiasm-7ca62062fe1321c4b151a53530423952b5535d10.tar.gz
miasm-7ca62062fe1321c4b151a53530423952b5535d10.zip
Merge pull request #869 from serpilliere/fix_use_seh
Sandbox: change use_seh
Diffstat (limited to 'example')
-rw-r--r--example/jitter/test_x86_32_seh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/test_x86_32_seh.py b/example/jitter/test_x86_32_seh.py
index 5277807d..e7f8cff4 100644
--- a/example/jitter/test_x86_32_seh.py
+++ b/example/jitter/test_x86_32_seh.py
@@ -36,7 +36,7 @@ parser = Sandbox_Win_x86_32.parser(description="PE sandboxer")
 parser.add_argument("filename", help="PE Filename")
 options = parser.parse_args()
 options.usesegm = True
-options.use_seh = True
+options.use_windows_structs = True
 
 # Create sandbox
 sb = Sandbox_Win_x86_32(options.filename, options, globals())