win32 master process had aready closed listening sockets
Igor Sysoev
13 years ago
1 changed file(s) with
2 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+2
-1
src/core/ngx_cycle.c
less
more
652
652
653
653
ls = old_cycle->listening.elts;
654
654
for (i = 0; i < old_cycle->listening.nelts; i++) {
655
if (ls[i].remain) {
655
656
if (ls[i].remain || ls[i].fd == -1) {
656
657
continue;
657
658
}
658
659