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 afa9be9 commit 6b23116Copy full SHA for 6b23116
crates/compression-codecs/src/xz/decoder.rs
@@ -87,6 +87,10 @@ impl Decode for XzDecoder {
87
self.inner.flush(output)
88
}
89
90
+ fn uncompressed_size(&mut self, input: &[u8]) -> Option<usize> {
91
+ self.inner.uncompressed_size(input)
92
+ }
93
+
94
fn finish(
95
&mut self,
96
output: &mut PartialBuffer<impl AsRef<[u8]> + AsMut<[u8]>>,
0 commit comments