aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2018-06-15 14:03:16 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2018-06-15 14:03:16 -0700
commitf5691a5fec26cabc4e448ead0fb431879c0c82b3 (patch)
treeae4e82851d807979fecacb0b4d1e7af4fdb153ea /src
parent211bd0e588c7c188fa131789620d40b3ebfa4fd2 (diff)
add the missing gpr_mu_destroy
Diffstat (limited to 'src')
-rw-r--r--src/core/lib/iomgr/ev_epollex_linux.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/ev_epollex_linux.cc b/src/core/lib/iomgr/ev_epollex_linux.cc
index 927224fd2c..f3db72e85c 100644
--- a/src/core/lib/iomgr/ev_epollex_linux.cc
+++ b/src/core/lib/iomgr/ev_epollex_linux.cc
@@ -608,6 +608,7 @@ static void pollable_unref(pollable* p, int line, const char* reason) {
GRPC_FD_TRACE("pollable_unref: Closing epfd: %d", p->epfd);
close(p->epfd);
grpc_wakeup_fd_destroy(&p->wakeup);
+ gpr_mu_destroy(&p->owner_orphan_mu);
gpr_free(p);
}
}