0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-22 01:31:55 +00:00

Don't forget to free large blocks.

This commit is contained in:
Martin Mares 1999-10-02 10:55:19 +00:00
parent ac40c888c2
commit 507cb9e58b

View File

@ -143,6 +143,11 @@ lp_free(resource *r)
c = d->next;
xfree(d);
}
for(d=m->first_large; d; d = c)
{
c = d->next;
xfree(d);
}
}
void