Skip to content

Commit 071c8f5

Browse files
committedFeb 17, 2025
8349909: jdk.internal.jimage.decompressor.ZipDecompressor does not close the Inflater in exceptional cases
Reviewed-by: lancea, alanb
1 parent f1258f9 commit 071c8f5

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed
 

‎src/java.base/share/classes/jdk/internal/jimage/decompressor/ZipDecompressor.java

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -50,16 +50,18 @@ static byte[] decompress(byte[] bytesIn, int offset, long originalSize) throws E
5050
}
5151
byte[] bytesOut = new byte[(int) originalSize];
5252

53+
int count = 0;
5354
Inflater inflater = new Inflater();
54-
inflater.setInput(bytesIn, offset, bytesIn.length - offset);
55+
try {
56+
inflater.setInput(bytesIn, offset, bytesIn.length - offset);
5557

56-
int count = 0;
57-
while (!inflater.finished() && count < originalSize) {
58-
count += inflater.inflate(bytesOut, count, bytesOut.length - count);
58+
while (!inflater.finished() && count < originalSize) {
59+
count += inflater.inflate(bytesOut, count, bytesOut.length - count);
60+
}
61+
} finally {
62+
inflater.end();
5963
}
6064

61-
inflater.end();
62-
6365
if (count != originalSize) {
6466
throw new IOException("Resource content size mismatch");
6567
}

0 commit comments

Comments
 (0)
Please sign in to comment.