From dc1b48ca3a692a9bf0b8dde6a9640a92632a9a6d Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 2 Apr 2024 12:03:32 +0200 Subject: pkg/fuzzer: remove Request.result field --- 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 4582ada44..df6fbd598 100644 --- a/pkg/fuzzer/fuzzer.go +++ b/pkg/fuzzer/fuzzer.go @@ -90,7 +90,6 @@ type Request struct { // Fields that are only relevant within pkg/fuzzer. flags ProgTypes stat string - result *Result resultC chan *Result } @@ -110,7 +109,6 @@ func (fuzzer *Fuzzer) Done(req *Request, res *Result) { fuzzer.triageProgCall(req.Prog, &res.Info.Extra, -1, req.flags) } // Unblock threads that wait for the result. - req.result = res if req.resultC != nil { req.resultC <- res } -- cgit mrf-deployment