Initialize address_len before accept()
accept() could produce unexpected behavior in case the address_len is uninitialized, e.g. return -1 with EINVAL
This commit is contained in:
parent
56fe7bed54
commit
a8d6211be4
2
loop.c
2
loop.c
@ -683,7 +683,7 @@ static void event_incoming (struct bufferevent *bev, short what, void *_arg) {
|
||||
|
||||
static void accept_incoming (evutil_socket_t efd, short what, void *arg) {
|
||||
vlogprintf (E_WARNING, "Accepting incoming connection\n");
|
||||
unsigned clilen;
|
||||
unsigned clilen = 0;
|
||||
struct sockaddr_in cli_addr;
|
||||
int fd = accept (efd, (struct sockaddr *)&cli_addr, &clilen);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user