Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
labs
BIRD Internet Routing Daemon
Commits
507cb9e5
Commit
507cb9e5
authored
Oct 02, 1999
by
Martin Mareš
Browse files
Don't forget to free large blocks.
parent
ac40c888
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/mempool.c
View file @
507cb9e5
...
...
@@ -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
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment