Skip to content

Commit

Permalink
[skip ci] Forgot we didn't proceess the PR with history support...
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechMula committed Apr 1, 2022
1 parent b1f1d93 commit 18e29ce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zstd/seqdec_amd64.go
Expand Up @@ -41,7 +41,8 @@ func sequenceDecs_decodeSync_bmi2(s *sequenceDecs, br *bitReader, ctx *decodeSyn

// decode sequences from the stream with the provided history but without a dictionary.
func (s *sequenceDecs) decodeSyncSimple(hist []byte) (bool, error) {
if len(s.dict) > 0 {
// XXX: history is not supported yet (waiting for another PR)
if len(s.dict) > 0 || len(hist) > 0 {
return false, nil
}

Expand Down

0 comments on commit 18e29ce

Please sign in to comment.