From 2d0412e38a1d32ac97ebef45198a6778e2c937b7 Mon Sep 17 00:00:00 2001 From: "Ruben S. Montero" Date: Mon, 11 Jan 2021 10:12:28 +0100 Subject: [PATCH] B #5219: Increase zlib_decompress buffer --- src/common/NebulaUtil.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/NebulaUtil.cc b/src/common/NebulaUtil.cc index 1150647a25..ff377c2a50 100644 --- a/src/common/NebulaUtil.cc +++ b/src/common/NebulaUtil.cc @@ -515,7 +515,7 @@ void one_util::split_unique(const string& st, char delim, set& res) /** * Buffer length for zlib inflate/deflate */ -#define ZBUFFER 16384 +#define ZBUFFER 65536 string * one_util::zlib_compress(const string& in, bool base64) {