diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2024-05-16 12:56:43 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2024-05-16 15:38:27 +0000 |
| commit | 19e202fa8a3722f5c90ed5847edb5aeabdd5f38f (patch) | |
| tree | a528875b3c3c531b43d5a184f83ec1a04c213914 /tools/syz-execprog | |
| parent | e072baa2563542356ae03ad6f2057ad143979f18 (diff) | |
pkg/fuzzer: manipulate ipc.ExecOpts
There's no need in duplicating the signal, coverage, hints flags.
Diffstat (limited to 'tools/syz-execprog')
| -rw-r--r-- | tools/syz-execprog/execprog.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-execprog/execprog.go b/tools/syz-execprog/execprog.go index ad75909eb..5479637ea 100644 --- a/tools/syz-execprog/execprog.go +++ b/tools/syz-execprog/execprog.go @@ -479,7 +479,7 @@ func checkerExecutor(ctx context.Context, source queue.Source, config *ipc.Confi if err != nil { log.Fatalf("failed to serialize %s: %v", req.Prog.Serialize(), err) } - output, info, hanged, err := env.ExecProg(req.ExecOpts, progData) + output, info, hanged, err := env.ExecProg(&req.ExecOpts, progData) res := &queue.Result{ Status: queue.Success, Info: info, |
