Filter: Fix function comparison
Check the SYM_FLAG_SAME in new symbols. The old code checked that in old symbols (f2).
This commit is contained in:
parent
4ab54f1aef
commit
dfb3eb7716
1 changed files with 1 additions and 1 deletions
|
@ -924,7 +924,7 @@
|
||||||
SYMBOL;
|
SYMBOL;
|
||||||
|
|
||||||
FID_SAME_BODY()
|
FID_SAME_BODY()
|
||||||
if (!(f2->sym->flags & SYM_FLAG_SAME))
|
if (!(f1->sym->flags & SYM_FLAG_SAME))
|
||||||
return 0;
|
return 0;
|
||||||
FID_INTERPRET_BODY()
|
FID_INTERPRET_BODY()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue