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

Fix memory leak in failed metadata preparation

parent b42445c0
No related branches found
No related tags found
No related merge requests found
...@@ -576,7 +576,7 @@ static int prepare_application_metadata(grpc_call *call, int count, ...@@ -576,7 +576,7 @@ static int prepare_application_metadata(grpc_call *call, int count,
} }
if (i != count) { if (i != count) {
for (int j = 0; j <= i; j++) { for (int j = 0; j <= i; j++) {
grpc_metadata *md = &metadata[i]; grpc_metadata *md = &metadata[j];
grpc_linked_mdelem *l = (grpc_linked_mdelem *)&md->internal_data; grpc_linked_mdelem *l = (grpc_linked_mdelem *)&md->internal_data;
GRPC_MDELEM_UNREF(l->md); GRPC_MDELEM_UNREF(l->md);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment