Fix comparison between signed and unsigned in `test/core/transport/chttp2/decode_huff_fuzzer.cc` (#30983)

pull/30988/head
Cheng-Yu Chung 3 years ago committed by GitHub
parent 96264e07b8
commit 120ee4c0f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/core/transport/chttp2/decode_huff_fuzzer.cc

@ -33,7 +33,7 @@ bool leak_check = true;
absl::optional<std::vector<uint8_t>> DecodeHuffSlow(const uint8_t* begin,
const uint8_t* end) {
uint64_t bits = 0;
int bits_left = 0;
size_t bits_left = 0u;
std::vector<uint8_t> out;
while (true) {
while (begin != end && bits_left < 30) {

Loading…
Cancel
Save