aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/resolve_address_posix.cc
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2017-11-21 19:38:09 -0800
committerGravatar Yash Tibrewal <yashkt@google.com>2017-11-21 19:38:09 -0800
commita13a8c0f3ea9bdf70680c0c8b5667186c832a412 (patch)
tree399711ebc0b87ac658c1a5c5cad0c58b9012fbe8 /src/core/lib/iomgr/resolve_address_posix.cc
parent7486144de0577e3e9453feec328741180d1f1bfa (diff)
A few src/core fixes due to missing exec_ctx_finish
Diffstat (limited to 'src/core/lib/iomgr/resolve_address_posix.cc')
-rw-r--r--src/core/lib/iomgr/resolve_address_posix.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/resolve_address_posix.cc b/src/core/lib/iomgr/resolve_address_posix.cc
index 6c9534a291..cc3d4fd7cf 100644
--- a/src/core/lib/iomgr/resolve_address_posix.cc
+++ b/src/core/lib/iomgr/resolve_address_posix.cc
@@ -42,6 +42,7 @@
static grpc_error* blocking_resolve_address_impl(
const char* name, const char* default_port,
grpc_resolved_addresses** addresses) {
+ grpc_core::ExecCtx exec_ctx;
struct addrinfo hints;
struct addrinfo *result = nullptr, *resp;
char* host;