aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/metadata.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-04-17 16:46:20 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-04-17 16:46:20 -0700
commiteb40a538cbe7e61a26011bdb606c29a8ebebae55 (patch)
tree435401c86c304c10b286af0482c18b88d334bf61 /src/core/transport/metadata.c
parentbd22271d00fe419671e787e9f18eb7cc9d8c9367 (diff)
Fix remaining allocation bugs
Diffstat (limited to 'src/core/transport/metadata.c')
-rw-r--r--src/core/transport/metadata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/transport/metadata.c b/src/core/transport/metadata.c
index 44f6591c95..74e94b2c24 100644
--- a/src/core/transport/metadata.c
+++ b/src/core/transport/metadata.c
@@ -120,7 +120,7 @@ static void unlock(grpc_mdctx *ctx) {
if (ctx->refs == 0) {
/* uncomment if you're having trouble diagnosing an mdelem leak to make
things clearer (slows down destruction a lot, however) */
- /* gc_mdtab(ctx); */
+ gc_mdtab(ctx);
if (ctx->mdtab_count && ctx->mdtab_count == ctx->mdtab_free) {
discard_metadata(ctx);
}