Allow sk_close(NULL).

This commit is contained in:
Martin Mares 2000-04-25 23:07:47 +00:00
parent b3155b3399
commit 00c0c18aea

View file

@ -698,7 +698,7 @@ bad:
void
sk_close(sock *s)
{
if (s->entered)
if (s && s->entered)
s->type = SK_DELETED;
else
rfree(s);