aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-11-23 14:30:05 -0800
committerGravatar Craig Tiller <ctiller@google.com>2016-11-23 14:30:05 -0800
commit5059ddf58b36f1a66e4ee1cee1486362ab8cdd1f (patch)
treedc0da73285ebbcfcb9a64d202cc4f893d7aaee69 /test/core/end2end
parent70b32393189fd29ba5805906eab6115ad626f3ce (diff)
Fix memory leak, uninitialized memory
Diffstat (limited to 'test/core/end2end')
-rw-r--r--test/core/end2end/fixtures/proxy.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/core/end2end/fixtures/proxy.c b/test/core/end2end/fixtures/proxy.c
index d014893742..c592f5a471 100644
--- a/test/core/end2end/fixtures/proxy.c
+++ b/test/core/end2end/fixtures/proxy.c
@@ -308,6 +308,7 @@ static void on_p2s_status(void *arg, int success) {
op.data.send_status_from_server.trailing_metadata =
pc->p2s_trailing_metadata.metadata;
op.data.send_status_from_server.status = pc->p2s_status;
+ op.data.send_status_from_server.status_details = &pc->p2s_status_details;
refpc(pc, "on_c2p_sent_status");
err = grpc_call_start_batch(pc->c2p, &op, 1,
new_closure(on_c2p_sent_status, pc), NULL);