update tests

This commit is contained in:
am0o0
2024-07-28 11:45:48 +02:00
parent 7bb7d83b26
commit 1b97804f45

View File

@@ -58,15 +58,6 @@ public class CommonsCompressHandler {
new XZCompressorInputStream(in); // $ hasTaintFlow="in"
new ZCompressorInputStream(in); // $ hasTaintFlow="in"
new ZstdCompressorInputStream(in); // $ hasTaintFlow="in"
int buffersize = 4096;
final byte[] buffer = new byte[buffersize];
int n = 0;
while (-1 != (n = gzIn.read(buffer))) {
out.write(buffer, 0, n);
}
out.close();
gzIn.close();
}
static void commonsCompressArchiveInputStream2(InputStream inputStream) {