mirror of
https://github.com/minio/minio.git
synced 2025-01-12 07:23:23 -05:00
b0deea27df
Also handle pretty formatted JSON documents.
11 lines
131 B
Go
11 lines
131 B
Go
// +build gofuzz
|
|
|
|
package lzo
|
|
|
|
import "bytes"
|
|
|
|
func Fuzz(data []byte) int {
|
|
Decompress1X(bytes.NewBuffer(data), 0, 0)
|
|
return 0
|
|
}
|