diff options
Diffstat (limited to 'syz-manager')
| -rw-r--r-- | syz-manager/repro.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/syz-manager/repro.go b/syz-manager/repro.go index 9edf102c4..95859a163 100644 --- a/syz-manager/repro.go +++ b/syz-manager/repro.go @@ -150,7 +150,7 @@ func (m *reproManager) Loop(ctx context.Context) { case <-ctx.Done(): return } - if !m.mgr.needRepro(crash) { + if crash == nil || !m.mgr.needRepro(crash) { continue } } |
