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 d0eceac commit 50d5bb5Copy full SHA for 50d5bb5
src/codec/brotli/decoder.rs
@@ -35,10 +35,10 @@ impl BrotliDecoder {
35
let status = match BrotliDecompressStream(
36
&mut in_buf.len(),
37
&mut input_len,
38
- &in_buf,
+ in_buf,
39
&mut out_buf.len(),
40
&mut output_len,
41
- &mut out_buf,
+ out_buf,
42
&mut 0,
43
&mut self.state,
44
) {
src/codec/brotli/encoder.rs
@@ -43,7 +43,7 @@ impl BrotliEncoder {
in_buf,
45
46
47
48
&mut None,
49
&mut |_, _, _, _| (),
0 commit comments