diff options
author | Craig Tiller <ctiller@google.com> | 2017-10-11 08:55:43 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-10-11 08:55:43 -0700 |
commit | e94374d0a5a3040ca71392be4c61b17f6ef99030 (patch) | |
tree | 1bdd8d4390af9b57627aa9445d9e721fa417058d /src/core | |
parent | 0ca5d863e1853fd54023ac6c094eaa31e59b949c (diff) |
Fix leak
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/chttp2_transport.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc index eea7f1f609..fbd3c328a0 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc @@ -2611,7 +2611,7 @@ static void next_bdp_ping_timer_expired_locked(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t = (grpc_chttp2_transport *)tp; GPR_ASSERT(t->have_next_bdp_ping_timer); t->have_next_bdp_ping_timer = false; - if (error == GRPC_ERROR_CANCELLED) { + if (error != GRPC_ERROR_NONE) { GRPC_CHTTP2_UNREF_TRANSPORT(exec_ctx, t, "bdp_ping"); return; } |