Comments for OLE2 extractor.

This commit is contained in:
n1073645 2019-11-21 11:29:45 +00:00
parent 7386c145ef
commit 071c1bdea6
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}