Преглед на файлове

Made TAR extractor and MACHO signature more robust

n1073645 преди 5 години
родител
ревизия
0a7b78b7ee
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      src/core/lib/FileSignatures.mjs

+ 1 - 1
src/core/lib/FileSignatures.mjs

@@ -2858,7 +2858,7 @@ export function extractTAR(bytes, offset) {
         if (stream.getBytes(5).join("") !== [0x75, 0x73, 0x74, 0x61, 0x72].join("")) {
 
             // This is needed since if it were not here it relies on there being at least 0x106 padding of 0s at the end of the TAR
-            stream.moveBackwardsBy(0x101);
+            stream.moveBackwardsBy(0x106);
             break;
         }