Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions projects/goipp/fuzzer/fuzz_decode_bytes.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Fuzz target for goipp's `DecodeBytes` function.
* Fuzz target for goipp's DecodeBytes function.
*/


Expand All @@ -10,7 +10,7 @@ import (
"github.com/OpenPrinting/goipp"
)

func FuzzDecodeBytes(f *testing.F) {
func FuzzDecBytes(f *testing.F) {
f.Fuzz(func(t *testing.T, data []byte) {
var m goipp.Message
if err := m.DecodeBytes(data); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion projects/goipp/oss_fuzz_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ go mod tidy
go install github.com/AdamKorcz/go-118-fuzz-build@latest
go get github.com/AdamKorcz/go-118-fuzz-build/testing

compile_native_go_fuzzer ./fuzzer FuzzDecodeBytes fuzz_decode_bytes
compile_native_go_fuzzer ./fuzzer FuzzDecBytes fuzz_decode_bytes
compile_native_go_fuzzer ./fuzzer FuzzDecodeBytesEx fuzz_decode_bytes_ex
compile_native_go_fuzzer ./fuzzer FuzzRoundTrip fuzz_round_trip
compile_native_go_fuzzer ./fuzzer FuzzCollections fuzz_collections
Expand Down