Fix build

This commit is contained in:
Sergey Lyubka 2022-06-29 18:03:04 +01:00
parent b1896d9944
commit 89e2a15eb7
2 changed files with 12 additions and 4 deletions

View File

@ -4397,7 +4397,9 @@ static void mg_iotest(struct mg_mgr *mgr, int ms) {
SOCKET maxfd = 0;
int rc;
FD_ZERO(&rset), FD_ZERO(&wset), FD_ZERO(&eset);
FD_ZERO(&rset);
FD_ZERO(&wset);
FD_ZERO(&eset);
for (c = mgr->conns; c != NULL; c = c->next) {
c->is_readable = c->is_writable = 0;
if (skip_iotest(c)) continue;
@ -4414,7 +4416,9 @@ static void mg_iotest(struct mg_mgr *mgr, int ms) {
#else
MG_ERROR(("select: %d %d", rc, MG_SOCK_ERRNO));
#endif
FD_ZERO(&rset), FD_ZERO(&wset), FD_ZERO(&eset);
FD_ZERO(&rset);
FD_ZERO(&wset);
FD_ZERO(&eset);
}
for (c = mgr->conns; c != NULL; c = c->next) {

View File

@ -544,7 +544,9 @@ static void mg_iotest(struct mg_mgr *mgr, int ms) {
SOCKET maxfd = 0;
int rc;
FD_ZERO(&rset), FD_ZERO(&wset), FD_ZERO(&eset);
FD_ZERO(&rset);
FD_ZERO(&wset);
FD_ZERO(&eset);
for (c = mgr->conns; c != NULL; c = c->next) {
c->is_readable = c->is_writable = 0;
if (skip_iotest(c)) continue;
@ -561,7 +563,9 @@ static void mg_iotest(struct mg_mgr *mgr, int ms) {
#else
MG_ERROR(("select: %d %d", rc, MG_SOCK_ERRNO));
#endif
FD_ZERO(&rset), FD_ZERO(&wset), FD_ZERO(&eset);
FD_ZERO(&rset);
FD_ZERO(&wset);
FD_ZERO(&eset);
}
for (c = mgr->conns; c != NULL; c = c->next) {