Skip to content

Commit ab1fd6a

Browse files
committed
removing spurious if clause
1 parent 4d66851 commit ab1fd6a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/varintdecode.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2246,8 +2246,6 @@ uint32_t masked_vbyte_select_delta(const uint8_t *in, uint64_t length,
22462246
availablebytes = scanned - consumed;
22472247
}
22482248
while (availablebytes + count < length) {
2249-
if (availablebytes < 16) break;
2250-
22512249
if (availablebytes < 16) {
22522250
if (availablebytes + count + 31 < length) {
22532251
#ifdef __AVX2__

0 commit comments

Comments
 (0)