aboutsummaryrefslogtreecommitdiff
path: root/lash.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-06 20:44:39 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-06 20:44:39 +0000
commit54851d3c6523b544c127fa0420e4b58fb1f046f4 (patch)
tree360c6764e2931f9f14f31b4a6fd90585d9d256b4 /lash.c
parent07f2f3917a08eea89953c8f0c3f1bc6ef52879b4 (diff)
downloadbusybox-54851d3c6523b544c127fa0420e4b58fb1f046f4.tar.gz
Fixed a memory leak in lash. It seems that close_all was calling close()
directly instead of calling mark_closed(), which allowed the memory allocated by mark_open() to never be freed. -Erik
Diffstat (limited to 'lash.c')
-rw-r--r--lash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lash.c b/lash.c
index 57d969e40..11016a009 100644
--- a/lash.c
+++ b/lash.c
@@ -632,7 +632,7 @@ static void close_all()
{
struct close_me *c;
for (c=close_me_head; c; c=c->next) {
- close(c->fd);
+ mark_closed(c->fd);
}
close_me_head = NULL;
}