aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/resource_quota.c
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2017-02-12 16:29:43 -0800
committerGravatar Sree Kuchibhotla <sreek@google.com>2017-02-12 16:29:43 -0800
commit1d15f24327e2bbfa62fe15f1d47c33194effb003 (patch)
tree92a055cd38d84779e46d921b75273ffc415be486 /src/core/lib/iomgr/resource_quota.c
parent91c4da322396a6f7b4ab980f05ab2fae5b889a0b (diff)
parent639d6a4bb303a7c5edfc31dc89c11159218692fe (diff)
Merge branch 'master' into fd_rw_atm_closure
Diffstat (limited to 'src/core/lib/iomgr/resource_quota.c')
-rw-r--r--src/core/lib/iomgr/resource_quota.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/resource_quota.c b/src/core/lib/iomgr/resource_quota.c
index 2cc979467f..511ffdcdf1 100644
--- a/src/core/lib/iomgr/resource_quota.c
+++ b/src/core/lib/iomgr/resource_quota.c
@@ -599,7 +599,7 @@ grpc_resource_quota *grpc_resource_quota_create(const char *name) {
void grpc_resource_quota_unref_internal(grpc_exec_ctx *exec_ctx,
grpc_resource_quota *resource_quota) {
if (gpr_unref(&resource_quota->refs)) {
- grpc_combiner_destroy(exec_ctx, resource_quota->combiner);
+ GRPC_COMBINER_UNREF(exec_ctx, resource_quota->combiner, "resource_quota");
gpr_free(resource_quota->name);
gpr_free(resource_quota);
}