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
LSH
lsh
Commits
cc19ca74
Commit
cc19ca74
authored
Oct 02, 2001
by
Niels Möller
Browse files
(gc_final): Chekc that root_set is non-null before
calling KILL_RESOURCE_LIST. Rev: src/gc.c:1.27
parent
43307c96
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/gc.c
View file @
cc19ca74
...
...
@@ -258,8 +258,11 @@ void gc(void)
void
gc_final
(
void
)
{
KILL_RESOURCE_LIST
(
root_set
);
root_set
=
NULL
;
if
(
root_set
)
{
KILL_RESOURCE_LIST
(
root_set
);
root_set
=
NULL
;
}
#if DEBUG_ALLOC
...
...
Write
Preview
Markdown
is supported
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