Commit 16800ea0 authored by Simon Kelley's avatar Simon Kelley

Fix crash introduced in 2675f206

parent b5e33ae5
...@@ -1516,8 +1516,9 @@ void check_servers(void) ...@@ -1516,8 +1516,9 @@ void check_servers(void)
serv->flags |= SERV_MARK; serv->flags |= SERV_MARK;
continue; continue;
} }
serv->sfd->used = 1; if (serv->sfd)
serv->sfd->used = 1;
} }
if (!(serv->flags & SERV_NO_REBIND) && !(serv->flags & SERV_LITERAL_ADDRESS)) if (!(serv->flags & SERV_NO_REBIND) && !(serv->flags & SERV_LITERAL_ADDRESS))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment