aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/subsystem/linux/maintainers_fuzz.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/subsystem/linux/maintainers_fuzz.go')
-rw-r--r--pkg/subsystem/linux/maintainers_fuzz.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/subsystem/linux/maintainers_fuzz.go b/pkg/subsystem/linux/maintainers_fuzz.go
new file mode 100644
index 000000000..ebf4be524
--- /dev/null
+++ b/pkg/subsystem/linux/maintainers_fuzz.go
@@ -0,0 +1,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
+}