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:
parent
ac40c888c2
commit
507cb9e58b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user