I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 533f7620 authored by zzz's avatar zzz
Browse files

bounds check

parent 49d88f00
No related branches found
No related tags found
No related merge requests found
...@@ -1436,6 +1436,8 @@ public class DataHelper { ...@@ -1436,6 +1436,8 @@ public class DataHelper {
*/ */
public static byte[] decompress(byte orig[], int offset, int length) throws IOException { public static byte[] decompress(byte orig[], int offset, int length) throws IOException {
if ((orig == null) || (orig.length <= 0)) return orig; if ((orig == null) || (orig.length <= 0)) return orig;
if (offset + length > orig.length)
throw new IOException("Bad params arrlen " + orig.length + " off " + offset + " len " + length);
ReusableGZIPInputStream in = ReusableGZIPInputStream.acquire(); ReusableGZIPInputStream in = ReusableGZIPInputStream.acquire();
in.initialize(new ByteArrayInputStream(orig, offset, length)); in.initialize(new ByteArrayInputStream(orig, offset, length));
...@@ -1458,6 +1460,7 @@ public class DataHelper { ...@@ -1458,6 +1460,7 @@ public class DataHelper {
byte rv[] = new byte[written]; byte rv[] = new byte[written];
System.arraycopy(outBuf.getData(), 0, rv, 0, written); System.arraycopy(outBuf.getData(), 0, rv, 0, written);
cache.release(outBuf); cache.release(outBuf);
// TODO release in finally block
ReusableGZIPInputStream.release(in); ReusableGZIPInputStream.release(in);
return rv; return rv;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment