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 | 01d9ce9cfe7d04c3e5aa2532b1c320ee62e33208 (patch) | |
tree | 27f5a1b0103ba9777bdc691336e2758a8ec6f096 | |
parent | b7fc87792bf10e101d15324776d82dbde53f7e75 (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).
-rw-r--r-- | serverboot/ChangeLog | 5 | ||||
-rw-r--r-- | serverboot/bootstrap.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/serverboot/ChangeLog b/serverboot/ChangeLog index bb6d188a..8c20e4f0 100644 --- a/serverboot/ChangeLog +++ b/serverboot/ChangeLog @@ -1,3 +1,8 @@ +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). + 1997-07-15 Miles Bader <miles@gnu.ai.mit.edu> * bootstrap.c (main): Rearrange default pager initialization. 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); } |