fix byte overflow (#728)

Signed-off-by: shiyuhang <1136742008@qq.com>
This commit is contained in:
shi yuhang 2023-03-07 15:26:56 +08:00 committed by GitHub
parent c1c804c865
commit a523312f01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ public class RowV2 {
if (this.large) { if (this.large) {
v = this.colIDs32[h]; v = this.colIDs32[h];
} else { } else {
v = this.colIDs[h]; v = this.colIDs[h] & 0xFF;
} }
if (v < colID) { if (v < colID) {
i = h + 1; i = h + 1;