From 24e820b226e36b6a28b16a7e650106014360a44d Mon Sep 17 00:00:00 2001 From: Yang Gao Date: Mon, 2 Feb 2015 14:44:53 -0800 Subject: Fix a memory leak. --- src/core/httpcli/format_request.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/httpcli') diff --git a/src/core/httpcli/format_request.c b/src/core/httpcli/format_request.c index 58bb7c740e..5d1a04ef82 100644 --- a/src/core/httpcli/format_request.c +++ b/src/core/httpcli/format_request.c @@ -105,6 +105,8 @@ gpr_slice grpc_httpcli_format_post_request(const grpc_httpcli_request *request, } gpr_strvec_add(&out, gpr_strdup("\r\n")); tmp = gpr_strvec_flatten(&out, &out_len); + gpr_strvec_destroy(&out); + if (body_bytes) { tmp = gpr_realloc(tmp, out_len + body_size); memcpy(tmp + out_len, body_bytes, body_size); -- cgit v1.2.3