Skip to content
Snippets Groups Projects
Commit ddecc619 authored by Bogdan Drutu's avatar Bogdan Drutu
Browse files

Fix call to grpc_exec_ctx_enqueue

parent a7eefe1a
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@ grpc_udp_server *grpc_udp_server_create(void) {
}
static void finish_shutdown(grpc_exec_ctx *exec_ctx, grpc_udp_server *s) {
grpc_exec_ctx_enqueue(exec_ctx, s->shutdown_complete, 1);
grpc_exec_ctx_enqueue(exec_ctx, s->shutdown_complete, 1, NULL);
gpr_mu_destroy(&s->mu);
gpr_cv_destroy(&s->cv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment