We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 916b6e8 commit 5e79764Copy full SHA for 5e79764
crates/compression-codecs/src/gzip/header.rs
@@ -78,7 +78,11 @@ fn consume_cstr(crc: &mut Crc, input: &mut PartialBuffer<&[u8]>) -> Option<()> {
78
}
79
80
impl Parser {
81
- pub(super) fn input(&mut self, crc: &mut Crc, input: &mut PartialBuffer<&[u8]>) -> io::Result<Option<Header>> {
+ pub(super) fn input(
82
+ &mut self,
83
+ crc: &mut Crc,
84
+ input: &mut PartialBuffer<&[u8]>,
85
+ ) -> io::Result<Option<Header>> {
86
loop {
87
match &mut self.state {
88
State::Fixed(data) => {
0 commit comments