Destroy the pollset mutex created in pollset_init

(Manually backporting the fix by Mike Burrows)
pull/14409/head
Sree Kuchibhotla 7 years ago
parent fb369d9567
commit 4fa4937bfa
  1. 1
      src/core/lib/iomgr/ev_epollex_linux.cc

@ -797,6 +797,7 @@ static grpc_error* pollable_process_events(grpc_pollset* pollset,
static void pollset_destroy(grpc_pollset* pollset) {
POLLABLE_UNREF(pollset->active_pollable, "pollset");
pollset->active_pollable = nullptr;
gpr_mu_destroy(&pollset->mu);
}
static grpc_error* pollable_epoll(pollable* p, grpc_millis deadline) {

Loading…
Cancel
Save