Skip to content

Commit

Permalink
Removing the uint16 check from fileAttr, which seemed to fail for att…
Browse files Browse the repository at this point in the history
…r > 0x80000000
  • Loading branch information
NickAllmakerOpsCompass committed Aug 12, 2024
1 parent b148463 commit 3e2fa32
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion headers/entryHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ module.exports = function () {

// get Unix file permissions
get fileAttr() {
return uint16(_attr >> 16) & 0xfff;
return (_attr || 0) >> 16 & 0xfff;
},

get offset() {
Expand Down
10 changes: 10 additions & 0 deletions test/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,16 @@ describe("headers", () => {
expect(head.toJSON()).to.eql(headerdata);
});

it("handles fileAttr when attr above 0x80000000", () => {
const attr = 0x81E80000;

const head = new centralHeader();
head.loadFromBinary(readBuf);
head.attr = attr;

expect(head.fileAttr).to.equal(0x01E8);
});

it("read binary and create new binary from it, they have to be equal", () => {
const head = new centralHeader();
head.loadFromBinary(readBuf);
Expand Down

0 comments on commit 3e2fa32

Please sign in to comment.