From 6e189cf48871220fff5a087cc06b6682e052da3c Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 10 Apr 2024 17:12:17 +0200 Subject: pkg/fuzzer: remove stats leftover --- pkg/fuzzer/fuzzer.go | 2 -- 1 file changed, 2 deletions(-) (limited to 'pkg') diff --git a/pkg/fuzzer/fuzzer.go b/pkg/fuzzer/fuzzer.go index 6ed79aa9a..2663d7b60 100644 --- a/pkg/fuzzer/fuzzer.go +++ b/pkg/fuzzer/fuzzer.go @@ -27,7 +27,6 @@ type Fuzzer struct { ctx context.Context mu sync.Mutex - stats map[string]uint64 rnd *rand.Rand target *prog.Target @@ -53,7 +52,6 @@ func NewFuzzer(ctx context.Context, cfg *Config, rnd *rand.Rand, Cover: newCover(), ctx: ctx, - stats: map[string]uint64{}, rnd: rnd, target: target, -- cgit mrf-deployment