Skip to content

Commit 631d13c

Browse files
committed
remove commented line
1 parent d4c5e9b commit 631d13c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

libs/lzo/src/lzss/mod.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ pub fn compress(input: &[u8], output: &mut Vec<u8>) -> Result<(), LzoError> {
6161
let layout = Layout::from_size_align(LZO1X_MEM_COMPRESS, std::mem::align_of::<u8>())
6262
.expect("Failed to create layout");
6363
let wrkmem = alloc(layout).cast::<c_void>();
64-
// let wrkmem = libc::malloc(LZO1X_MEM_COMPRESS);
6564
let mut out_len = output.capacity();
6665
let err = compress::lzo1x_1_compress(
6766
input.as_ptr(),

0 commit comments

Comments
 (0)