commit | a813afc24f864e0055bdd0ef8cde6777a514b212 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Thu May 24 16:19:36 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Thu May 24 16:19:36 2001 +0000 |
tree | c789d82d6a5cf053e3a147028decf260f78af19d | |
parent | 5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9 [diff] [blame] |
Plug another memory leak
diff --git a/hush.c b/hush.c index bb13971..5c129ce 100644 --- a/hush.c +++ b/hush.c
@@ -2494,6 +2494,7 @@ done_word(&temp, &ctx); done_pipe(&ctx,PIPE_SEQ); run_list(ctx.list_head); + b_free(&temp); } while (rcode != -1); /* loop on syntax errors, return on EOF */ return 0; }