X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/886968335bc64a40f5a45780169c1264d1116b65..f054036a10e1f22a16ba5fb584d0f30b18013dd4:/client/fpga_compress.c diff --git a/client/fpga_compress.c b/client/fpga_compress.c index a0ecbe48..c67f6769 100644 --- a/client/fpga_compress.c +++ b/client/fpga_compress.c @@ -189,6 +189,7 @@ int zlib_decompress(FILE *infile, FILE *outfile) compressed_fpga_stream.avail_out = DECOMPRESS_BUF_SIZE; compressed_fpga_stream.zalloc = fpga_deflate_malloc; compressed_fpga_stream.zfree = fpga_deflate_free; + compressed_fpga_stream.opaque = Z_NULL; ret = inflateInit2(&compressed_fpga_stream, 0);