aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-12-21 13:36:59 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2018-12-21 13:36:59 -0800
commit15460eb3c9f58ba7f8a4db9bebff0aaa00b57d27 (patch)
tree80f83b1a29b4185a304b11279a0b6c85e1c621e1 /src
parent0c7eb8daf8414a8efcb742d9af59d8e38c1b1b22 (diff)
Fix error
Diffstat (limited to 'src')
-rw-r--r--src/core/ext/transport/chttp2/transport/chttp2_transport.cc4
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 78833723a2..7f4627fa77 100644
--- a/src/core/ext/transport/chttp2/transport/chttp2_transport.cc
+++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.cc
@@ -174,9 +174,9 @@ grpc_chttp2_transport::~grpc_chttp2_transport() {
GRPC_ERROR_CREATE_FROM_STATIC_STRING("Transport destroyed");
// ContextList::Execute follows semantics of a callback function and does not
// take a ref on error
- grpc_core::ContextList::Execute(t->cl, nullptr, error);
+ grpc_core::ContextList::Execute(cl, nullptr, error);
GRPC_ERROR_UNREF(error);
- t->cl = nullptr;
+ cl = nullptr;
grpc_slice_buffer_destroy_internal(&read_buffer);
grpc_chttp2_hpack_parser_destroy(&hpack_parser);