X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/886968335bc64a40f5a45780169c1264d1116b65..6f93185537e17bebe27f42c8558338e7f04b7d68:/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);