diff --git a/src/edge_utils.c b/src/edge_utils.c index 06d71e7..659b727 100644 --- a/src/edge_utils.c +++ b/src/edge_utils.c @@ -2869,7 +2869,7 @@ int run_edge_loop (n2n_edge_t *eee) { // any or all of the FDs could have input; check them all // external - if(FD_ISSET(eee->sock, &socket_mask)) { + if((eee->sock >= 0) && FD_ISSET(eee->sock, &socket_mask)) { if(0 != fetch_and_eventually_process_data(eee, eee->sock, pktbuf, &expected, &position, now)) {