mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 07:57:35 +00:00
Fix typo which broke radiff2
This commit is contained in:
parent
edb3249ea6
commit
e82a78552b
@ -157,7 +157,7 @@ R_API int r_anal_diff_fcn(RAnal *anal, RList *fcns, RList *fcns2) {
|
||||
r_list_foreach (fcns, iter, fcn) {
|
||||
if (fcn->type != R_ANAL_FCN_TYPE_SYM || fcn->name == NULL)
|
||||
continue;
|
||||
r_list_foreach (fcns2, iter, fcn2) {
|
||||
r_list_foreach (fcns2, iter2, fcn2) {
|
||||
if (fcn2->type != R_ANAL_FCN_TYPE_SYM || fcn2->name == NULL ||
|
||||
strcmp (fcn->name, fcn2->name))
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user