1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 01:59:38 +02:00

Be sure to use only a valid journal slot pointer

Related commit:
- 70cabc1cc6
This commit is contained in:
Raymond Hill 2021-01-02 12:41:13 -05:00
parent 3cf9a187fe
commit 2bb33aac20
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -506,7 +506,7 @@ const PageStore = class {
this.journalTimer = undefined;
const journal = this.journal;
const pivot = this.journalLastCommitted || 0;
const pivot = Math.max(0, this.journalLastCommitted);
const now = Date.now();
let aggregateCounts = 0;