mirror of
https://github.com/cesanta/mongoose.git
synced 2025-08-05 21:18:32 +08:00
Fix build
This commit is contained in:
parent
b1896d9944
commit
89e2a15eb7
@ -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) {
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user