mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
Fix null pointer in disasm
This commit is contained in:
parent
fd244a97ba
commit
0f6b4e34e1
@ -393,7 +393,7 @@ toro:
|
||||
} else {
|
||||
f = NULL;
|
||||
}
|
||||
if (at == f->addr+f->size-analop.length) // HACK
|
||||
if (f && at == f->addr+f->size-analop.length) // HACK
|
||||
pre = "\\ ";
|
||||
} else pre = " "; //r_cons_printf (" ");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user