diff options
author | David G. Quintas <dgq@google.com> | 2017-04-19 14:01:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-19 14:01:25 -0700 |
commit | e89d9589dca278fb4d6ff0ecddf50dfeae9fb400 (patch) | |
tree | 54408040004d380fb2e84199e40491d1ecf4148b | |
parent | c63a119fd4956a36d0c72a7f90e32bdf813dca40 (diff) | |
parent | 7fadeae2a68642e829ba1bd448427dfac22b7200 (diff) |
Merge pull request #10717 from dgquintas/moar_grpclb_leaks
Fix a couple leaks in gRPCLB
-rw-r--r-- | src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c b/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c index ff8d319309..291a1f1b0b 100644 --- a/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c +++ b/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.c @@ -1122,6 +1122,7 @@ static void lb_call_init_locked(grpc_exec_ctx *exec_ctx, glb_policy->base.interested_parties, GRPC_MDSTR_SLASH_GRPC_DOT_LB_DOT_V1_DOT_LOADBALANCER_SLASH_BALANCELOAD, &host, glb_policy->deadline, NULL); + grpc_slice_unref_internal(exec_ctx, host); grpc_metadata_array_init(&glb_policy->lb_initial_metadata_recv); grpc_metadata_array_init(&glb_policy->lb_trailing_metadata_recv); @@ -1293,6 +1294,7 @@ static void lb_on_response_received_locked(grpc_exec_ctx *exec_ctx, void *arg, "Received empty server list. Picks will stay pending until a " "response with > 0 servers is received"); } + grpc_grpclb_destroy_serverlist(glb_policy->serverlist); } } else { /* serverlist == NULL */ gpr_log(GPR_ERROR, "Invalid LB response received: '%s'. Ignoring.", |