aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/surface/call.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-05 08:40:18 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-05 08:40:18 -0800
commitea3697bf4cf24d647568a493d209c8bded7510ce (patch)
tree23639e18011c95d2d56444c068e94c7cb4c514f1 /src/core/surface/call.c
parent53476f1d0e52dfa21fa5363fe29396e96748ab14 (diff)
Fix memory leak
Diffstat (limited to 'src/core/surface/call.c')
-rw-r--r--src/core/surface/call.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/surface/call.c b/src/core/surface/call.c
index ebd6ace962..4a45f67e1d 100644
--- a/src/core/surface/call.c
+++ b/src/core/surface/call.c
@@ -966,6 +966,7 @@ static void destroy_legacy_state(legacy_state *ls) {
}
gpr_free(ls->initial_md_in.metadata);
gpr_free(ls->trailing_md_in.metadata);
+ gpr_free(ls->details);
gpr_free(ls);
}