Skip to content
Snippets Groups Projects
Commit d78ca88d authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix bugs in test infra

parent 3ec4b83f
No related branches found
No related tags found
No related merge requests found
......@@ -138,7 +138,9 @@ static uint32_t read_uint32(input_stream *inp) {
static grpc_byte_buffer *read_message(input_stream *inp) {
gpr_slice slice = gpr_slice_malloc(read_uint22(inp));
memset(GPR_SLICE_START_PTR(slice), 0, GPR_SLICE_LENGTH(slice));
return grpc_raw_byte_buffer_create(&slice, 1);
grpc_byte_buffer *out = grpc_raw_byte_buffer_create(&slice, 1);
gpr_slice_unref(slice);
return out;
}
static void read_metadata(input_stream *inp, size_t *count,
......
......@@ -148,6 +148,7 @@ static void half_init(half *m, passthru_endpoint *parent) {
void grpc_passthru_endpoint_create(grpc_endpoint **client,
grpc_endpoint **server) {
passthru_endpoint *m = gpr_malloc(sizeof(*m));
m->halves = 2;
half_init(&m->client, m);
half_init(&m->server, m);
gpr_mu_init(&m->mu);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment