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 a15225f commit 8e7af96Copy full SHA for 8e7af96
turbopack/crates/turbo-persistence/src/static_sorted_file.rs
@@ -601,9 +601,9 @@ fn decompress_into_arc(
601
let decompressed = unsafe { Arc::get_mut_unchecked(&mut buffer) };
602
// Safety: decompress_with_dict will only write to `decompressed` and not read from it.
603
let bytes_writes = if let Some(dict) = compression_dictionary {
604
- decompress_with_dict(&block, decompressed, dict)?
+ decompress_with_dict(block, decompressed, dict)?
605
} else {
606
- decompress(&block, decompressed)?
+ decompress(block, decompressed)?
607
};
608
assert_eq!(
609
bytes_writes, uncompressed_length as usize,
0 commit comments