Closed GoogleCodeExporter closed 9 years ago
Correction on fix:
byte[] buffer = new byte[1024 * 1024];
int len;
while ((len = tarStream.read(buffer)) >= 0) {
outputFileStream.write(buffer, 0, len);
}
Original comment by Grant.Ov...@gmail.com
on 23 Oct 2014 at 6:27
Original issue reported on code.google.com by
Grant.Ov...@gmail.com
on 23 Oct 2014 at 6:21