Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Nov 1, 2024
1 parent 9ea1775 commit c43afbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl<'a> HybridRleDecoder<'a> {
}

let (indicator, consumed) = uleb128::decode(self.data);
self.data = unsafe { self.data.get_unchecked_release(consumed..) };
self.data = unsafe { self.data.get_unchecked(consumed..) };

Ok(Some(if indicator & 1 == 1 {
// is bitpacking
Expand Down

0 comments on commit c43afbe

Please sign in to comment.