diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2024-01-07 22:48:37 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-07 22:48:37 +0100 |
| commit | 3a2fb2472c0e8e01f84ed29be29a929775ed07ab (patch) | |
| tree | 17718031046a1e912072db057993b478aa0ce06e /example/jitter | |
| parent | e9dee4eb5e8b8dc0b81e22598b754c8df29f1674 (diff) | |
| parent | 2bf07ad1eb835e12b4b3dbaf42f71adf888a8cc1 (diff) | |
| download | miasm-3a2fb2472c0e8e01f84ed29be29a929775ed07ab.tar.gz miasm-3a2fb2472c0e8e01f84ed29be29a929775ed07ab.zip | |
Merge pull request #1464 from mrexodia/python312
Python 3.12 support
Diffstat (limited to 'example/jitter')
| -rw-r--r-- | example/jitter/unpack_generic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/jitter/unpack_generic.py b/example/jitter/unpack_generic.py index 3329d2a9..e389a4b5 100644 --- a/example/jitter/unpack_generic.py +++ b/example/jitter/unpack_generic.py @@ -35,7 +35,7 @@ def stop(jitter): if options.oep: # Set callbacks sb.jitter.add_breakpoint(int(options.oep, 0), stop) - + # Run until an error is encountered - IT IS UNLIKELY THE ORIGINAL ENTRY POINT try: sb.run() |