From 19e202fa8a3722f5c90ed5847edb5aeabdd5f38f Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Thu, 16 May 2024 12:56:43 +0200 Subject: pkg/fuzzer: manipulate ipc.ExecOpts There's no need in duplicating the signal, coverage, hints flags. --- tools/syz-execprog/execprog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/syz-execprog') 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, -- cgit mrf-deployment