remove unused variables (#4636)

This commit is contained in:
ebbit1q
2022-06-08 00:32:11 +02:00
committed by GitHub
parent 77622095d5
commit 3e5b7cd392
2 changed files with 0 additions and 7 deletions

View File

@@ -793,7 +793,6 @@ UnZip::ErrorCode UnzipPrivate::inflateFile(
// extract data
qint64 read;
quint64 tot = 0;
/* Allocate inflate state */
z_stream zstr;
@@ -826,7 +825,6 @@ UnZip::ErrorCode UnzipPrivate::inflateFile(
decryptBytes(*keys, buffer1, read);
cur++;
tot += read;
zstr.avail_in = (uInt) read;
zstr.next_in = (Bytef*) buffer1;