소스 검색

Comments for OLE2 extractor.

n1073645 5 년 전
부모
커밋
071c1bdea6
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/core/lib/FileSignatures.mjs

+ 2 - 0
src/core/lib/FileSignatures.mjs

@@ -3016,6 +3016,8 @@ export function extractOLE2(bytes, offset) {
 
         // If we have found a valid entry, move forwards by 128.
         if (found) {
+
+            // Every entry is at least 128 in size, some are bigger which is dealt with by the above if statement.
             total += 128;
             stream.moveForwardsBy(128);
         }