avancement planning

This commit is contained in:
2026-05-26 11:58:39 +02:00
parent 619a2b240a
commit 150b97cd2e
4892 changed files with 99214 additions and 429382 deletions
+6 -1
View File
@@ -212,7 +212,12 @@ function readKey(buffer, start, end, inSequence) {
let size = end - position;
let lowInt;
if (size > 4) {
lowInt = dataView.getInt32(position + 4);
lowInt = position + 8 <= buffer.length ? dataView.getInt32(position + 4) : (
buffer[position + 4] << 24 |
buffer[position + 5] << 16 |
buffer[position + 6] << 8 |
buffer[position + 7]
);
highInt |= lowInt >>> 28;
if (size <= 6) { // clear the last bits
lowInt &= -0x10000;