mirror of
https://github.com/reactos/syzkaller.git
synced 2025-02-21 03:50:31 +00:00
pkg/ipc: add fallback signal only if normal signal is not enabled
It's possible to get no signal from normal coverage due to dedup, in that case we don't want to add fallback coverage because it can lead to corpus bloat.
This commit is contained in:
parent
89d2e60023
commit
8e0b1c8525
@ -311,7 +311,7 @@ func (env *Env) Exec(opts *ExecOpts, p *prog.Prog) (output []byte, info []CallIn
|
||||
|
||||
if env.out != nil {
|
||||
info, err0 = env.readOutCoverage(p)
|
||||
if info != nil {
|
||||
if info != nil && env.config.Flags&FlagSignal == 0 {
|
||||
addFallbackSignal(p, info)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user