FIX: Coverity Scans, z_stream.opaque not initialized, use Z_NULL;

This commit is contained in:
iceman1001 2016-01-19 20:28:29 +01:00
commit 704d552a77

View file

@ -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);