diff options
author | Thomas Bushnell <thomas@gnu.org> | 1998-05-12 17:15:17 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1998-05-12 17:15:17 +0000 |
commit | 1a6f43dec4834aad6e3ed41dc52a912c8ff87e95 (patch) | |
tree | da147f4eb1513c2fda8718cf8bd6e643b54be44e /serverboot/bootstrap.c | |
parent | 0c096a2f51a56c929a68d06f8f053faec86409fd (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.c | 1 |
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); } |