Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit eea8d34

Browse files
author
Yevgeny Pats
committed
bugfix in go-fuzz engine
1 parent bad1b3e commit eea8d34

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
const FuzzitEndpoint = "https://app.fuzzit.dev"
14-
const Version = "v2.4.66"
14+
const Version = "v2.4.67"
1515

1616
type Target struct {
1717
Name string `firestore:"target_name"`

client/gofuzz.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ func (c *FuzzitClient) runGoFuzzFuzzing() error {
241241
stopSession = true
242242
if err != nil {
243243
log.Printf("process finished with error = %v\n", err)
244-
return err
244+
return nil
245245
} else {
246246
log.Print("process finished successfully")
247247
}

0 commit comments

Comments
 (0)