mirror of
https://github.com/minio/minio.git
synced 2025-11-27 13:31:39 +01:00
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
|
|
}
|