aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/executor.cc
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-11-09 18:44:50 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2017-11-10 10:48:15 -0800
commit00325486749b5b56bde1fe8155fb2e3eef6499de (patch)
tree7531e040ab5cc0ed280c842f551380c4934463e4 /src/core/lib/iomgr/executor.cc
parent3150744c712449585e6c0a3347f2b9366671a8eb (diff)
Correction to closure.cc,bm_chttp2_hpack and few more
Diffstat (limited to 'src/core/lib/iomgr/executor.cc')
-rw-r--r--src/core/lib/iomgr/executor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/executor.cc b/src/core/lib/iomgr/executor.cc
index b45af562f8..f764d915ff 100644
--- a/src/core/lib/iomgr/executor.cc
+++ b/src/core/lib/iomgr/executor.cc
@@ -206,7 +206,7 @@ static void executor_push(grpc_closure* closure, grpc_error* error,
}
thread_state* ts = (thread_state*)gpr_tls_get(&g_this_thread_state);
if (ts == NULL) {
- ts = &g_thread_state[GPR_HASH_POINTER(&exec_ctx, cur_thread_count)];
+ ts = &g_thread_state[GPR_HASH_POINTER(exec_ctx, cur_thread_count)];
} else {
GRPC_STATS_INC_EXECUTOR_SCHEDULED_TO_SELF();
}