diff options
author | Yash Tibrewal <yashkt@google.com> | 2018-12-19 12:57:07 -0800 |
---|---|---|
committer | Yash Tibrewal <yashkt@google.com> | 2018-12-19 12:57:07 -0800 |
commit | ad8f04feca10075982208ef8a4c7ce92900d5077 (patch) | |
tree | dff2a9f00b64c71b089a7fde55923657248eb2a8 /src/core/ext/transport/chttp2 | |
parent | 906cf5b428f31513321c8d2e3530aa7a03cca400 (diff) |
Fix compiler error
Diffstat (limited to 'src/core/ext/transport/chttp2')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/chttp2_transport.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc index 3b7c48a72c..9e03c90ccb 100644 --- a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc @@ -568,8 +568,8 @@ static void close_transport_locked(grpc_chttp2_transport* t, cancel_pings(t, GRPC_ERROR_REF(error)); // ContextList::Execute follows semantics of a callback function and does not // need a ref on error - grpc_core::ContextList::Execute(cl, nullptr, error); - cl = nullptr; + grpc_core::ContextList::Execute(t->cl, nullptr, error); + t->cl = nullptr; if (t->closed_with_error == GRPC_ERROR_NONE) { if (!grpc_error_has_clear_grpc_status(error)) { error = grpc_error_set_int(error, GRPC_ERROR_INT_GRPC_STATUS, |