We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e4c8ad + f472a1d commit 74bdec6Copy full SHA for 74bdec6
headers/entryHeader.js
@@ -213,7 +213,7 @@ module.exports = function () {
213
// modification time (2 bytes time, 2 bytes date)
214
data.writeUInt32LE(_time, Constants.CENTIM);
215
// uncompressed file crc-32 value
216
- data.writeUInt32LE(_crc, Constants.CENCRC);
+ data.writeInt32LE(_crc & 0xFFFF, Constants.CENCRC, true);
217
// compressed size
218
data.writeUInt32LE(_compressedSize, Constants.CENSIZ);
219
// uncompressed size
0 commit comments