Skip to content

Commit

Permalink
Merge branch 'huffy' of ssh://github.com/ctiller/grpc into huffy
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Jan 27, 2025
2 parents 36e640c + 7f45a9e commit 1890cd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/core/transport/chttp2/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ grpc_fuzz_test(
"absl/random:mocking_bit_gen",
"gtest",
"fuzztest",
"fuzztest_main"
"fuzztest_main",
],
tags = ["no_windows"],
deps = [
Expand All @@ -99,7 +99,7 @@ grpc_fuzz_test(
"absl/strings",
"gtest",
"fuzztest",
"fuzztest_main"
"fuzztest_main",
],
tags = ["no_windows"],
deps = [
Expand Down
2 changes: 1 addition & 1 deletion test/core/transport/chttp2/huff_fuzzer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ std::optional<std::vector<uint8_t>> DecodeHuffFast(const uint8_t* begin,
const uint8_t* end) {
std::vector<uint8_t> v;
auto f = [&](uint8_t x) { v.push_back(x); };
if (!grpc_core::HuffDecoder<decltype(f)>(f, begin, end).Run()) {
if (!HuffDecoder<decltype(f)>(f, begin, end).Run()) {
return std::nullopt;
}
return v;
Expand Down

0 comments on commit 1890cd7

Please sign in to comment.