From 14e3d9bf5b5be4ae78d679213777bd68903d33a7 Mon Sep 17 00:00:00 2001
From: Craig Tiller <ctiller@google.com>
Date: Tue, 3 May 2016 08:33:56 -0700
Subject: [PATCH] Fix leak

---
 src/core/lib/iomgr/async_execution_lock.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/core/lib/iomgr/async_execution_lock.c b/src/core/lib/iomgr/async_execution_lock.c
index 3859f474bf..96ba175a5a 100644
--- a/src/core/lib/iomgr/async_execution_lock.c
+++ b/src/core/lib/iomgr/async_execution_lock.c
@@ -69,6 +69,7 @@ grpc_aelock *grpc_aelock_create(grpc_workqueue *optional_workqueue) {
 static void really_destroy(grpc_aelock *lock) {
   GPR_ASSERT(gpr_atm_no_barrier_load(&lock->state) == 0);
   gpr_mpscq_destroy(&lock->queue);
+  gpr_free(lock);
 }
 
 void grpc_aelock_destroy(grpc_aelock *lock) {
-- 
GitLab