0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-19 11:55:21 +00:00

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);