diff options
author | Craig Tiller <ctiller@google.com> | 2016-07-12 09:33:34 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-07-12 09:33:34 -0700 |
commit | 609dc2d360a15e0fd5fb9d73f21054b53abb2a27 (patch) | |
tree | e0698b151e40ff7ba102d4203a0817360a0a11ff /src/core | |
parent | 2808be6641c316c01da860a097fe0596a9411eab (diff) |
Fix rare flake
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/chttp2_transport.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.c b/src/core/ext/transport/chttp2/transport/chttp2_transport.c index 41506094de..0efc7ddb2f 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.c +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.c @@ -1670,6 +1670,7 @@ static void fail_pending_writes(grpc_exec_ctx *exec_ctx, grpc_chttp2_stream_global *stream_global, grpc_error *error) { error = removal_error(error, stream_global); + stream_global->send_message = NULL; grpc_chttp2_complete_closure_step( exec_ctx, transport_global, stream_global, &stream_global->send_initial_metadata_finished, GRPC_ERROR_REF(error)); |