Skip to content
Snippets Groups Projects
Commit 6b0cb778 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #5527 from ctiller/xoxo

Fix comparison function
parents 8707d69f 239d6d53
No related branches found
No related tags found
No related merge requests found
......@@ -108,6 +108,7 @@ static int subchannel_key_compare(grpc_subchannel_key *a,
if (c != 0) return c;
c = memcmp(a->args.filters, b->args.filters,
a->args.filter_count * sizeof(*a->args.filters));
if (c != 0) return c;
return grpc_channel_args_compare(a->args.args, b->args.args);
}
......
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