diff options
author | Craig Tiller <ctiller@google.com> | 2016-04-18 22:47:54 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-04-18 22:47:54 -0700 |
commit | be006cbf8ac475722d77073b222f7eded4030b97 (patch) | |
tree | 571ec01d604b71498e4d18f74bd80971c89e9b09 | |
parent | 7673f7ac63d8bf7e18bdcd2888c5c57822ce938f (diff) |
Make API calls legal
-rw-r--r-- | test/core/end2end/fuzzers/api_fuzzer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/end2end/fuzzers/api_fuzzer.c b/test/core/end2end/fuzzers/api_fuzzer.c index a914482588..225c333cda 100644 --- a/test/core/end2end/fuzzers/api_fuzzer.c +++ b/test/core/end2end/fuzzers/api_fuzzer.c @@ -571,7 +571,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { if (g_channel == NULL) ok = false; grpc_call *parent_call = NULL; if (active_call->type != ROOT) { - if (active_call->call == NULL) { + if (active_call->call == NULL || active_call->type == CLIENT) { end(&inp); break; } |