diff options
author | Mark D. Roth <roth@google.com> | 2016-12-09 17:21:26 +0000 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-12-09 17:21:26 +0000 |
commit | 96ba68d7cd4ecc3d366df2b33f8d62db9c4c8df6 (patch) | |
tree | a8799022dcc06497e6ea97e3fabd1abfc4b50167 /test/core/end2end/fixtures | |
parent | 6c07bf85a336c1cfbdf4547e134161a9be4a0fa5 (diff) |
Fix more allocation bugs.
Diffstat (limited to 'test/core/end2end/fixtures')
-rw-r--r-- | test/core/end2end/fixtures/http_proxy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/core/end2end/fixtures/http_proxy.c b/test/core/end2end/fixtures/http_proxy.c index 57fc4a38f8..80865fc7a6 100644 --- a/test/core/end2end/fixtures/http_proxy.c +++ b/test/core/end2end/fixtures/http_proxy.c @@ -367,6 +367,7 @@ static void on_read_request_done(grpc_exec_ctx* exec_ctx, void* arg, static void on_accept(grpc_exec_ctx* exec_ctx, void* arg, grpc_endpoint* endpoint, grpc_pollset* accepting_pollset, grpc_tcp_server_acceptor* acceptor) { + gpr_free(acceptor); grpc_end2end_http_proxy* proxy = arg; // Instantiate proxy_connection. proxy_connection* conn = gpr_malloc(sizeof(*conn)); |