Skip to content

Commit

Permalink
v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aspacca committed Jan 6, 2020
1 parent 5fab83b commit 2e33f7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server_fuzz.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func FuzzLocalStorage(fuzz []byte) int {
}

token := Encode(10000000 + int64(rand.Intn(1000000000)))
filename := Encode(10000000 + int64(rand.Intn(1000000000))) + ".bin"
filename := Encode(10000000+int64(rand.Intn(1000000000))) + ".bin"

input := bytes.NewReader(fuzz)
err = storage.Put(token, filename, input, applicationOctetStream, fuzzLength)
Expand Down

0 comments on commit 2e33f7c

Please sign in to comment.