Skip to content

Commit 9cbc7bd

Browse files
committed
Running Travis again
1 parent 8efa2fa commit 9cbc7bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fuzz.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ package jsonparser
22

33
func FuzzParseString(data []byte) int {
44
r, err := ParseString(data)
5-
if err != nil || r == nil {
5+
if err != nil {
66
return 0
77
}
8+
_ = r
89
return 1
910
}

0 commit comments

Comments
 (0)