mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 00:51:19 +00:00
Unnecessary NULL
This commit is contained in:
parent
595398c447
commit
f58373e00d
@ -118,7 +118,7 @@ static inline RAsmEqu *r_asm_code_equ_get(RAsmCode *code, const char *key) { //
|
||||
void *equ;
|
||||
RListIter *iter;
|
||||
r_list_foreach (code->equs, iter, equ) {
|
||||
RAsmEqu *e = (RAsmEqu*) equ; NULL;
|
||||
RAsmEqu *e = (RAsmEqu*) equ;
|
||||
if (!strcmp (e->key, key)) {
|
||||
return e;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user