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 | |
| 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')
| -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); } |
