Remove absolute paths

This commit is contained in:
CrazyMax 2020-04-08 00:33:20 +02:00
parent ff47e64685
commit fce5f2e313
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
342 changed files with 6646 additions and 7223 deletions

View file

@ -358,8 +358,6 @@ bzip2.decompress = function(bits, stream, buf, bufsize, streamCRC) {
crc = (crc ^ (-1)) >>> 0;
if ((crc|0) != (crcblock|0)) message.Error("Error in bzip2: crc32 do not match");
if (streamCRC === null)
streamCRC = 0;
streamCRC = (crc ^ ((streamCRC << 1) | (streamCRC >>> 31))) & 0xFFFFFFFF;
return streamCRC;
}