From: Kostya Shishkov Date: Thu, 20 May 2021 09:53:22 +0000 (+0200) Subject: deflate: fix align() in inflate X-Git-Url: https://git.nihav.org/?p=nihav.git;a=commitdiff_plain;h=11f1d51e5a08ce44ddcdc308fd2f6d942760e7d4 deflate: fix align() in inflate --- diff --git a/nihav-core/src/compr/deflate.rs b/nihav-core/src/compr/deflate.rs index 7d6fae5..e917519 100644 --- a/nihav-core/src/compr/deflate.rs +++ b/nihav-core/src/compr/deflate.rs @@ -174,7 +174,7 @@ impl<'a> CurrentSource<'a> { fn align(&mut self) { let b = self.br.bits & 7; if b != 0 { - self.skip_cache(8 - (b as u8)); + self.skip_cache(b); } } fn left(&self) -> isize {