diff options
author | 2019-08-25 19:01:35 +0000 | |
---|---|---|
committer | 2019-08-25 19:01:35 +0000 | |
commit | e08d3335b0014e5fa9ef6ff239ca3f4d2122f658 (patch) | |
tree | b404e035b1aa63f48b9d33255cc0416a81b22d46 /plugin/cache/fuzz.go | |
parent | 793bd324999ed301a7437931213dbbb2d766558f (diff) | |
download | coredns-e08d3335b0014e5fa9ef6ff239ca3f4d2122f658.tar.gz coredns-e08d3335b0014e5fa9ef6ff239ca3f4d2122f658.tar.zst coredns-e08d3335b0014e5fa9ef6ff239ca3f4d2122f658.zip |
fuzz: revert setup function (#3189)
This can't be used in its current form; revert the entire PR.
Revert "fuzzing: allow setup function to be called (#3175)"
This reverts commit 62451fd3eb68cef5dcdafe6e4228f08cf52d84fc.
Diffstat (limited to 'plugin/cache/fuzz.go')
-rw-r--r-- | plugin/cache/fuzz.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/cache/fuzz.go b/plugin/cache/fuzz.go index 368953bbf..18e98fa9f 100644 --- a/plugin/cache/fuzz.go +++ b/plugin/cache/fuzz.go @@ -8,5 +8,5 @@ import ( // Fuzz fuzzes cache. func Fuzz(data []byte) int { - return fuzz.Do(New(), nil, data) + return fuzz.Do(New(), data) } |