diff options
author | xtao <vertextao@hotmail.com> | 2018-12-22 09:49:22 +0800 |
---|---|---|
committer | xtao <vertextao@hotmail.com> | 2018-12-22 09:49:22 +0800 |
commit | 5ac6ab67e4278b977dde50891f6aed6cb0e9e078 (patch) | |
tree | ae7f7719437f7990a02e352314f24f2c5d95e449 /src/core/lib | |
parent | 0f5b1d6bdfab97fd3490142a837c48e768027111 (diff) |
* Fixed issue(17563) "Freeing heap block containing an active critical section." reported by Application Verifier on Windows.
Diffstat (limited to 'src/core/lib')
-rw-r--r-- | src/core/lib/iomgr/resource_quota.cc | 1 | ||||
-rw-r--r-- | src/core/lib/transport/metadata.cc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/resource_quota.cc b/src/core/lib/iomgr/resource_quota.cc index 7e4b3c9b2f..61c366098e 100644 --- a/src/core/lib/iomgr/resource_quota.cc +++ b/src/core/lib/iomgr/resource_quota.cc @@ -665,6 +665,7 @@ void grpc_resource_quota_unref_internal(grpc_resource_quota* resource_quota) { GPR_ASSERT(resource_quota->num_threads_allocated == 0); GRPC_COMBINER_UNREF(resource_quota->combiner, "resource_quota"); gpr_free(resource_quota->name); + gpr_mu_destroy(&resource_quota->thread_count_mu); gpr_free(resource_quota); } } diff --git a/src/core/lib/transport/metadata.cc b/src/core/lib/transport/metadata.cc index 60af22393e..30482a1b3b 100644 --- a/src/core/lib/transport/metadata.cc +++ b/src/core/lib/transport/metadata.cc @@ -187,6 +187,7 @@ static void gc_mdtab(mdtab_shard* shard) { ((destroy_user_data_func)gpr_atm_no_barrier_load( &md->destroy_user_data))(user_data); } + gpr_mu_destroy(&md->mu_user_data); gpr_free(md); *prev_next = next; num_freed++; |