Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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