diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-01-20 04:53:27 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-20 04:53:27 -0500 |
commit | 1d6e154a73505cd0366cdeec7cc8582dd3ac2191 (patch) | |
tree | a0603d66b29dcc9ab91354ef583ba5e349f8409f /vendor/github.com/klauspost/compress/flate/inflate.go | |
parent | f46478c1e9af601759e341de76d4c655b4a66068 (diff) | |
parent | 2c492be00a13bfbc389d2b1b97c6bf91520e280e (diff) | |
download | podman-1d6e154a73505cd0366cdeec7cc8582dd3ac2191.tar.gz podman-1d6e154a73505cd0366cdeec7cc8582dd3ac2191.tar.bz2 podman-1d6e154a73505cd0366cdeec7cc8582dd3ac2191.zip |
Merge pull request #12939 from flouthoc/vendor-common
vendor: bump `c/common` for netavark and other pkgs as well.
Diffstat (limited to 'vendor/github.com/klauspost/compress/flate/inflate.go')
-rw-r--r-- | vendor/github.com/klauspost/compress/flate/inflate.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/vendor/github.com/klauspost/compress/flate/inflate.go b/vendor/github.com/klauspost/compress/flate/inflate.go index d1edb356c..d5f62f6a2 100644 --- a/vendor/github.com/klauspost/compress/flate/inflate.go +++ b/vendor/github.com/klauspost/compress/flate/inflate.go @@ -328,11 +328,17 @@ func (f *decompressor) nextBlock() { switch typ { case 0: f.dataBlock() + if debugDecode { + fmt.Println("stored block") + } case 1: // compressed, fixed Huffman tables f.hl = &fixedHuffmanDecoder f.hd = nil f.huffmanBlockDecoder()() + if debugDecode { + fmt.Println("predefinied huffman block") + } case 2: // compressed, dynamic Huffman tables if f.err = f.readHuffman(); f.err != nil { @@ -341,6 +347,9 @@ func (f *decompressor) nextBlock() { f.hl = &f.h1 f.hd = &f.h2 f.huffmanBlockDecoder()() + if debugDecode { + fmt.Println("dynamic huffman block") + } default: // 3 is reserved. if debugDecode { |