From dfb3eb771683ae4cc5ae43a990352578ab20f0fa Mon Sep 17 00:00:00 2001 From: "Ondrej Zajicek (work)" Date: Tue, 10 Dec 2019 18:53:16 +0100 Subject: [PATCH] Filter: Fix function comparison Check the SYM_FLAG_SAME in new symbols. The old code checked that in old symbols (f2). --- filter/f-inst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter/f-inst.c b/filter/f-inst.c index e3e0d76d9..51a353509 100644 --- a/filter/f-inst.c +++ b/filter/f-inst.c @@ -924,7 +924,7 @@ SYMBOL; FID_SAME_BODY() - if (!(f2->sym->flags & SYM_FLAG_SAME)) + if (!(f1->sym->flags & SYM_FLAG_SAME)) return 0; FID_INTERPRET_BODY() -- 2.39.2