Update github.com/containers/image/v5 to post-v5.29.2 main

Signed-off-by: Miloslav Trmač <mitr@redhat.com>
This commit is contained in:
renovate[bot]
2024-01-31 03:50:15 +00:00
committed by Miloslav Trmač
parent a6239eec70
commit c941d813f3
59 changed files with 6912 additions and 3258 deletions

View File

@@ -212,7 +212,7 @@ func (d *compressor) writeBlockSkip(tok *tokens, index int, eof bool) error {
// Should only be used after a start/reset.
func (d *compressor) fillWindow(b []byte) {
// Do not fill window if we are in store-only or huffman mode.
if d.level <= 0 {
if d.level <= 0 && d.level > -MinCustomWindowSize {
return
}
if d.fast != nil {