mirror of
https://github.com/containers/podman.git
synced 2025-12-02 19:28:58 +08:00
Bumps c/buildah to -> `v1.24.3-0.20220310160415-5ec70bf01ea5` c/storage to -> `v1.38.3-0.20220308085612-93ce26691863` c/image to -> `v5.20.1-0.20220310094651-0d8056ee346f` Signed-off-by: Aditya R <arajan@redhat.com>
12 lines
310 B
Go
12 lines
310 B
Go
//go:build gofuzz
|
|
// +build gofuzz
|
|
|
|
// Copyright 2019+ Klaus Post. All rights reserved.
|
|
// License information can be found in the LICENSE file.
|
|
// Based on work by Yann Collet, released under BSD License.
|
|
|
|
package zstd
|
|
|
|
// ignoreCRC can be used for fuzz testing to ignore CRC values...
|
|
const ignoreCRC = true
|