Skip to content

Commit

Permalink
removing spurious if clause
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed May 20, 2024
1 parent 4d66851 commit ab1fd6a
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/varintdecode.c
Original file line number Diff line number Diff line change
Expand Up @@ -2246,8 +2246,6 @@ uint32_t masked_vbyte_select_delta(const uint8_t *in, uint64_t length,
availablebytes = scanned - consumed;
}
while (availablebytes + count < length) {
if (availablebytes < 16) break;

if (availablebytes < 16) {
if (availablebytes + count + 31 < length) {
#ifdef __AVX2__
Expand Down

0 comments on commit ab1fd6a

Please sign in to comment.