mirror of https://github.com/minio/minio.git
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
|
||
|
}
|