Merge pull request #50361 from timothyqiu/inflate-buf-error

Handle Z_BUF_ERROR in decompress_dynamic
This commit is contained in:
Rémi Verschelde 2021-07-11 09:33:06 +02:00 committed by GitHub
commit 88e35c88a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -238,7 +238,10 @@ int Compression::decompress_dynamic(Vector<uint8_t> *p_dst_vect, int p_max_dst_s
case Z_DATA_ERROR:
case Z_MEM_ERROR:
case Z_STREAM_ERROR:
case Z_BUF_ERROR:
if (strm.msg) {
WARN_PRINT(strm.msg);
}
(void)inflateEnd(&strm);
p_dst_vect->resize(0);
return ret;