mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 04:49:47 -07:00
Initialize member fields
This commit is contained in:
parent
8f02fe0cc6
commit
307f5e6e56
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ QByteArray Utils::Gzip::compress(const QByteArray &data, const int level, bool *
|
||||||
const int BUFSIZE = 128 * 1024;
|
const int BUFSIZE = 128 * 1024;
|
||||||
std::vector<char> tmpBuf(BUFSIZE);
|
std::vector<char> tmpBuf(BUFSIZE);
|
||||||
|
|
||||||
z_stream strm;
|
z_stream strm {};
|
||||||
strm.zalloc = Z_NULL;
|
strm.zalloc = Z_NULL;
|
||||||
strm.zfree = Z_NULL;
|
strm.zfree = Z_NULL;
|
||||||
strm.opaque = Z_NULL;
|
strm.opaque = Z_NULL;
|
||||||
|
@ -109,7 +109,7 @@ QByteArray Utils::Gzip::decompress(const QByteArray &data, bool *ok)
|
||||||
const int BUFSIZE = 1024 * 1024;
|
const int BUFSIZE = 1024 * 1024;
|
||||||
std::vector<char> tmpBuf(BUFSIZE);
|
std::vector<char> tmpBuf(BUFSIZE);
|
||||||
|
|
||||||
z_stream strm;
|
z_stream strm {};
|
||||||
strm.zalloc = Z_NULL;
|
strm.zalloc = Z_NULL;
|
||||||
strm.zfree = Z_NULL;
|
strm.zfree = Z_NULL;
|
||||||
strm.opaque = Z_NULL;
|
strm.opaque = Z_NULL;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue