aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2024-04-02 12:03:32 +0200
committerDmitry Vyukov <dvyukov@google.com>2024-04-02 10:26:21 +0000
commitdc1b48ca3a692a9bf0b8dde6a9640a92632a9a6d (patch)
tree8a4518535af1c7169103140e1d914b862ff43da6 /pkg
parentf861ecca8b4dbdc9f71c3271d1eb6dbc0f71b5c6 (diff)
pkg/fuzzer: remove Request.result field
Diffstat (limited to 'pkg')
-rw-r--r--pkg/fuzzer/fuzzer.go2
1 files changed, 0 insertions, 2 deletions
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
}