1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-11-07 03:12:33 +01:00

Fix minor bugs spotted during code review

This commit is contained in:
Raymond Hill 2019-10-14 09:03:51 -04:00
parent 389d8458e0
commit f117c280d0
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 2 additions and 1 deletions

View File

@ -194,6 +194,7 @@ const isHnAnchored = (( ) => {
} else {
lastEnd = -1;
}
lastLen = len;
}
return matchStart < lastEnd && (
matchStart === lastBeg ||

View File

@ -585,7 +585,7 @@
}
const inputLength = instr.length;
const outbuf = arrbuf instanceof ArrayBuffer === false
? new Uint32Array(this.decodeSize(instr))
? new Uint32Array(this.decodeSize(instr) >> 2)
: new Uint32Array(arrbuf);
let i = instr.indexOf(' ', this.magic.length) + 1;
if ( i === -1 ) {