summaryrefslogtreecommitdiff
path: root/serverboot/bootstrap.c
diff options
context:
space:
mode:
authorThomas Bushnell <thomas@gnu.org>1998-05-12 17:15:17 +0000
committerThomas Bushnell <thomas@gnu.org>1998-05-12 17:15:17 +0000
commit1a6f43dec4834aad6e3ed41dc52a912c8ff87e95 (patch)
treeda147f4eb1513c2fda8718cf8bd6e643b54be44e /serverboot/bootstrap.c
parent0c096a2f51a56c929a68d06f8f053faec86409fd (diff)
Tue May 12 12:11:36 1998 Thomas Bushnell, n/BSG <tb@mit.edu>
* bootstrap.c (parse_script): Free BUF before returning. Reported by Katusya Tanaka (wyvern@pb3.so-net.ne.jp).
Diffstat (limited to 'serverboot/bootstrap.c')
-rw-r--r--serverboot/bootstrap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/serverboot/bootstrap.c b/serverboot/bootstrap.c
index fb4e0ccb..3fa0f404 100644
--- a/serverboot/bootstrap.c
+++ b/serverboot/bootstrap.c
@@ -428,4 +428,5 @@ parse_script (struct file *f)
line = ++p;
}
+ free (buf);
}