diff options
Diffstat (limited to 'example/disas_and_graph.py')
| -rwxr-xr-x | example/disas_and_graph.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/disas_and_graph.py b/example/disas_and_graph.py index 0763f824..bfdeb344 100755 --- a/example/disas_and_graph.py +++ b/example/disas_and_graph.py @@ -64,7 +64,7 @@ for (n,f), ad in dll_dyn_funcs.items(): def my_disasm_callback(ad): - all_bloc = asmbloc.dis_bloc_ia32(in_str, ad, symbol_pool = symbol_pool) + all_bloc = asmbloc.dis_bloc_ia32(in_str, ad, symbol_pool = symbol_pool, dont_dis_nulstart_bloc = True) for b in all_bloc: for l in b.lines: for i, a in enumerate(l.arg): |