Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
GHC
Commits
e943c43f
Commit
e943c43f
authored
Feb 05, 2007
by
Simon Marlow
Browse files
fix memory leak in allocExec/freeExec (see bug
#985
)
parent
b024f2af
Changes
1
Show whitespace changes
Inline
Side-by-side
rts/sm/Storage.c
View file @
e943c43f
...
...
@@ -1046,13 +1046,17 @@ void freeExec (void *addr)
bd
->
gen_no
-=
*
(
StgPtr
)
p
;
*
(
StgPtr
)
p
=
0
;
if
(
bd
->
gen_no
==
0
)
{
// Free the block if it is empty, but not if it is the block at
// the head of the queue.
if
(
bd
->
gen_no
==
0
&&
bd
!=
exec_block
)
{
if
(
bd
!=
exec_block
)
{
debugTrace
(
DEBUG_gc
,
"free exec block %p"
,
bd
->
start
);
dbl_link_remove
(
bd
,
&
exec_block
);
setExecutable
(
bd
->
start
,
bd
->
blocks
*
BLOCK_SIZE
,
rtsFalse
);
freeGroup
(
bd
);
}
else
{
bd
->
free
=
bd
->
start
;
}
}
RELEASE_SM_LOCK
...
...
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