mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-25 17:00:36 -09:00
GP-146 - fix compile error - missing ZLIB class specifier.
This commit is contained in:
@@ -104,7 +104,7 @@ public class CrushedPNGUtil {
|
||||
try (ByteArrayOutputStream decompressedOutput = new ByteArrayOutputStream(expectedSize);
|
||||
InflaterOutputStream inflaterStream = new InflaterOutputStream(decompressedOutput)) {
|
||||
|
||||
inflaterStream.write(ZLIB_COMPRESSION_DEFAULT);
|
||||
inflaterStream.write(ZLIB.ZLIB_COMPRESSION_DEFAULT);
|
||||
idatStream.writeTo(inflaterStream);
|
||||
inflaterStream.finish();
|
||||
results = decompressedOutput.toByteArray();
|
||||
|
||||
Reference in New Issue
Block a user