Skip to content

Commit

Permalink
COMPRESS-542 : record change
Browse files Browse the repository at this point in the history
Record change for Compress-542 with PR#120
  • Loading branch information
PeterAlfredLee committed Aug 15, 2020
1 parent 464ba19 commit 5fc625d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,14 +169,22 @@ The <action> type attribute can be add,update,fix,remove.
<action type="update" date="2020-08-10" due-to="Dependabot" dev="ggregory">
Update GitHub actions/checkout from v1 to v2.3.1 #114, #124.
</action>
<action issue="COMPRESS-543" type="fix" date="2020-08-10" due-to="wulf2333" dev="PeterLee">
<action issue="COMPRESS-543" type="fix" date="2020-08-10"
due-to="wulf2333" dev="PeterLee">
Fix for test fails on Windows. The tests are failing because the
default charset is not UTF-8.
</action>
<action issue="COMPRESS-544" type="fix" date="2020-08-13" due-to="Aditya Prasad" dev="PeterLee">
<action issue="COMPRESS-544" type="fix" date="2020-08-13"
due-to="Aditya Prasad" dev="PeterLee">
TarArchiveInputStream can not detect a truncated tar in skip()
and skipRecordPadding().
</action>
<action issue="COMPRESS-542" type="fix" date="2020-08-15"
due-to="theobisproject" dev="theobisproject">
Make the memory allocation in SevenZFile.readFilesInfo a lazy
allocation to avoid OOM when dealing some giant 7z archives.
Github Pull Request #120.
</action>
</release>
<release version="1.20" date="2020-02-08"
description="Release 1.20">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -976,7 +976,7 @@ private void readFilesInfo(final ByteBuffer header, final Archive archive) throw
throw new IOException("File names length invalid");
}
assertFitsIntoInt("file names length", size - 1);
final byte[] names = new byte[(int)(size - 1)];
final byte[] names = new byte[(int) (size - 1)];
header.get(names);
int nextFile = 0;
int nextName = 0;
Expand Down

0 comments on commit 5fc625d

Please sign in to comment.