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

Fix memory corruption if >2 ports

parent 9f44bfff
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ static int add_socket_to_server(grpc_tcp_server *s, int fd, ...@@ -252,7 +252,7 @@ static int add_socket_to_server(grpc_tcp_server *s, int fd,
if (s->nports == s->port_capacity) { if (s->nports == s->port_capacity) {
s->port_capacity *= 2; s->port_capacity *= 2;
s->ports = s->ports =
gpr_realloc(s->ports, sizeof(server_port *) * s->port_capacity); gpr_realloc(s->ports, sizeof(server_port) * s->port_capacity);
} }
sp = &s->ports[s->nports++]; sp = &s->ports[s->nports++];
sp->server = s; sp->server = s;
......
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