From a55d40cd00b995fd223b674ffc9d69fceb4c6202 Mon Sep 17 00:00:00 2001 From: mark0 <59284400+mark0-cn@users.noreply.github.com> Date: Thu, 10 Aug 2023 23:46:56 +0800 Subject: [PATCH] Update accounting.rs (#1411) Remove dead code for better semantic compliance --- libafl/src/schedulers/accounting.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libafl/src/schedulers/accounting.rs b/libafl/src/schedulers/accounting.rs index 5ddffd7c3c..cd9d86ee5b 100644 --- a/libafl/src/schedulers/accounting.rs +++ b/libafl/src/schedulers/accounting.rs @@ -214,7 +214,7 @@ where continue; } - if top_acc.max_accounting[idx] >= self.accounting_map[idx] { + if top_acc.max_accounting[idx] == self.accounting_map[idx] { equal_score = true; }