diff options
author | dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> | 2021-01-11 10:23:37 +0000 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2021-01-11 08:50:59 -0500 |
commit | 63ecd1215ac815dc38c41f70d50e0de34d3854b9 (patch) | |
tree | 21056bd4dcde6d9fb3c51db3275fccd009bee241 /vendor/github.com/klauspost/compress/zstd/zstd.go | |
parent | 41613bdb96953c9cea8a8fd46da211bd42660944 (diff) | |
download | podman-63ecd1215ac815dc38c41f70d50e0de34d3854b9.tar.gz podman-63ecd1215ac815dc38c41f70d50e0de34d3854b9.tar.bz2 podman-63ecd1215ac815dc38c41f70d50e0de34d3854b9.zip |
Bump github.com/containers/storage from 1.24.4 to 1.24.5
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.24.4 to 1.24.5.
- [Release notes](https://github.com/containers/storage/releases)
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md)
- [Commits](https://github.com/containers/storage/compare/v1.24.4...v1.24.5)
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'vendor/github.com/klauspost/compress/zstd/zstd.go')
-rw-r--r-- | vendor/github.com/klauspost/compress/zstd/zstd.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/github.com/klauspost/compress/zstd/zstd.go b/vendor/github.com/klauspost/compress/zstd/zstd.go index 0807719c8..0c761dd62 100644 --- a/vendor/github.com/klauspost/compress/zstd/zstd.go +++ b/vendor/github.com/klauspost/compress/zstd/zstd.go @@ -73,6 +73,10 @@ var ( // ErrDecoderClosed will be returned if the Decoder was used after // Close has been called. ErrDecoderClosed = errors.New("decoder used after Close") + + // ErrDecoderNilInput is returned when a nil Reader was provided + // and an operation other than Reset/DecodeAll/Close was attempted. + ErrDecoderNilInput = errors.New("nil input provided as reader") ) func println(a ...interface{}) { |