7-zip decompression failure
description
Hello,
I tried to use the library for streaming 7zip files decompression.
Unfortunately, it fails to decompress some files.
I have attached an example.
It also fails with simple code such as:
using (var archive = ArchiveFactory.Open(stream))
{
foreach (var entry in archive.Entries)
{
entry.WriteToDirectory(".");
}
}