You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code fails, which is not desired behavior
use lz4::block::{compress,decompress};let v = vec![0u8;0];let comp_with_prefix = compress(&v,None,true).unwrap();assert_eq!(v, decompress(&comp_with_prefix,None).unwrap());
The following code fails, which is not desired behavior
(originally posted the issue here: bozaro#55)
The text was updated successfully, but these errors were encountered: