Fix dead nested assignment librz/util/print.c
This commit is contained in:
parent
81d5e0be1d
commit
6f8b629be8
1 changed files with 3 additions and 5 deletions
|
|
@ -1194,13 +1194,11 @@ RZ_API void rz_print_hexdump(RzPrint *p, ut64 addr, const ut8 *buf, int len, int
|
|||
if (comment) {
|
||||
if (p && p->colorfor) {
|
||||
a = p->colorfor(p->user, addr + j, true);
|
||||
if (a && *a) {
|
||||
b = Color_RESET;
|
||||
} else {
|
||||
a = b = "";
|
||||
if (!a || !*a) {
|
||||
a = "";
|
||||
}
|
||||
} else {
|
||||
a = b = "";
|
||||
a = "";
|
||||
}
|
||||
printfmt("%s ; %s", a, comment);
|
||||
free(comment);
|
||||
|
|
|
|||
Loading…
Reference in a new issue