We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8efa2fa commit 9cbc7bdCopy full SHA for 9cbc7bd
fuzz.go
@@ -2,8 +2,9 @@ package jsonparser
2
3
func FuzzParseString(data []byte) int {
4
r, err := ParseString(data)
5
- if err != nil || r == nil {
+ if err != nil {
6
return 0
7
}
8
+ _ = r
9
return 1
10
0 commit comments