fix byte overflow (#729)

Signed-off-by: shiyuhang <1136742008@qq.com>
Co-authored-by: shiyuhang <1136742008@qq.com>
This commit is contained in:
Ti Chi Robot 2023-03-07 19:22:23 +08:00 committed by GitHub
parent 287317f6a2
commit a09b06d6b4
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) {
v = this.colIDs32[h];
} else {
v = this.colIDs[h];
v = this.colIDs[h] & 0xFF;
}
if (v < colID) {
i = h + 1;