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 c7d57e2 commit 9bf6d96Copy full SHA for 9bf6d96
turbopack/crates/turbo-persistence/src/static_sorted_file.rs
@@ -602,7 +602,7 @@ pub fn decompress_into_arc(
602
// Safety: We know that the buffer is not shared yet.
603
let decompressed = unsafe { Arc::get_mut_unchecked(&mut buffer) };
604
// Safety: decompress_with_dict will only write to `decompressed` and not read from it.
605
- let bytes_writes = decompress_with_dict(&block, decompressed, compression_dictionary)?;
+ let bytes_writes = decompress_with_dict(block, decompressed, compression_dictionary)?;
606
assert_eq!(
607
bytes_writes, uncompressed_length as usize,
608
"Decompressed length does not match expected length"
0 commit comments