mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 07:57:35 +00:00
Fix null deref in anj
This commit is contained in:
parent
bd0b0be77b
commit
58923119f9
@ -1209,7 +1209,7 @@ static int cmd_an(RCore *core, bool use_json, const char *name) {
|
||||
r_cons_printf ("0x%" PFMT64x "\n", tgt_addr);
|
||||
} else {
|
||||
pj_o (pj);
|
||||
pj_ks (pj, "name", name);
|
||||
pj_ks (pj, "name", name? name: "");
|
||||
pj_ks (pj, "type", "address");
|
||||
pj_kn (pj, "offset", tgt_addr);
|
||||
pj_end (pj);
|
||||
|
Loading…
Reference in New Issue
Block a user