Commit 2963747d authored by topjohnwu's avatar topjohnwu

Fix LZ4_LG format decompression

Fix #3802, fix #3722, fix #3770, fix #3635, fix #3787, close #3812
parent e7350d50
......@@ -546,6 +546,7 @@ stream_ptr get_decoder(format_t type, stream_ptr &&base) {
case LZ4:
return make_unique<LZ4F_decoder>(std::move(base));
case LZ4_LEGACY:
case LZ4_LG:
return make_unique<LZ4_decoder>(std::move(base));
case GZIP:
default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment