diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-15 06:32:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-15 06:32:07 -0400 |
commit | 758f2c7a094a3654af98d9365b7f975b7bd12ff4 (patch) | |
tree | 41dace9da8f4eb9da1500b28e94ff72e04ebee2f /vendor/github.com/klauspost/compress/flate/stateless.go | |
parent | ae7997ab50c7dcfbf7f0a3ec19c9ce1126095f8e (diff) | |
parent | daebf50b899fe998b8866a9f99e4c2b677645091 (diff) | |
download | podman-758f2c7a094a3654af98d9365b7f975b7bd12ff4.tar.gz podman-758f2c7a094a3654af98d9365b7f975b7bd12ff4.tar.bz2 podman-758f2c7a094a3654af98d9365b7f975b7bd12ff4.zip |
Merge pull request #13498 from flouthoc/podman-vendor-buildah
vendor: update `c/buildah`, `c/image` and `c/storage`
Diffstat (limited to 'vendor/github.com/klauspost/compress/flate/stateless.go')
-rw-r--r-- | vendor/github.com/klauspost/compress/flate/stateless.go | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/vendor/github.com/klauspost/compress/flate/stateless.go b/vendor/github.com/klauspost/compress/flate/stateless.go index 53e899124..544162a43 100644 --- a/vendor/github.com/klauspost/compress/flate/stateless.go +++ b/vendor/github.com/klauspost/compress/flate/stateless.go @@ -249,7 +249,15 @@ func statelessEnc(dst *tokens, src []byte, startAt int16) { l++ } if nextEmit < s { - emitLiteral(dst, src[nextEmit:s]) + if false { + emitLiteral(dst, src[nextEmit:s]) + } else { + for _, v := range src[nextEmit:s] { + dst.tokens[dst.n] = token(v) + dst.litHist[v]++ + dst.n++ + } + } } // Save the match found |