plug memory leak in client_close_ev

This commit is contained in:
Omar Polo 2023-06-24 14:22:12 +00:00
parent ddf7a437de
commit 841633cfec
1 changed files with 2 additions and 0 deletions

View File

@ -1267,6 +1267,8 @@ client_close_ev(int fd, short event, void *d)
close(c->fd);
c->fd = -1;
free(c);
}
static void