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

Fix memory leak

parent 5a8a8073
No related branches found
No related tags found
No related merge requests found
......@@ -328,6 +328,7 @@ static void init_channel_elem(grpc_channel_element *elem,
grpc_mdelem_from_strings(mdctx, "content-type", p->content_type);
slice = gpr_slice_from_copied_string(p->content);
g->content = grpc_byte_buffer_create(&slice, 1);
gpr_slice_unref(slice);
}
}
}
......@@ -342,6 +343,7 @@ static void destroy_channel_elem(grpc_channel_element *elem) {
for (i = 0; i < channeld->gettable_count; i++) {
grpc_mdelem_unref(channeld->gettables[i].path);
grpc_mdelem_unref(channeld->gettables[i].content_type);
grpc_byte_buffer_destroy(channeld->gettables[i].content);
}
gpr_free(channeld->gettables);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment