aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/subsystem/linux/maintainers_fuzz.go
blob: ebf4be5247fb75fe65d0c828987db4dcc9bac4ba (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2022 syzkaller project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.

package linux

import "bytes"

func Fuzz(data []byte) int {
	parseLinuxMaintainers(bytes.NewReader(data))
	return 0
}