diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-24 16:19:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-24 16:19:36 +0000 |
commit | a813afc24f864e0055bdd0ef8cde6777a514b212 (patch) | |
tree | c789d82d6a5cf053e3a147028decf260f78af19d | |
parent | 5a9d441b2cfb4f3614971f918bb69b5e7a5ea2c9 (diff) | |
download | busybox-w32-a813afc24f864e0055bdd0ef8cde6777a514b212.tar.gz busybox-w32-a813afc24f864e0055bdd0ef8cde6777a514b212.tar.bz2 busybox-w32-a813afc24f864e0055bdd0ef8cde6777a514b212.zip |
Plug another memory leak
-rw-r--r-- | hush.c | 1 | ||||
-rw-r--r-- | shell/hush.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -2494,6 +2494,7 @@ int parse_stream_outer(struct in_str *inp) | |||
2494 | done_word(&temp, &ctx); | 2494 | done_word(&temp, &ctx); |
2495 | done_pipe(&ctx,PIPE_SEQ); | 2495 | done_pipe(&ctx,PIPE_SEQ); |
2496 | run_list(ctx.list_head); | 2496 | run_list(ctx.list_head); |
2497 | b_free(&temp); | ||
2497 | } while (rcode != -1); /* loop on syntax errors, return on EOF */ | 2498 | } while (rcode != -1); /* loop on syntax errors, return on EOF */ |
2498 | return 0; | 2499 | return 0; |
2499 | } | 2500 | } |
diff --git a/shell/hush.c b/shell/hush.c index bb1397179..5c129ce17 100644 --- a/shell/hush.c +++ b/shell/hush.c | |||
@@ -2494,6 +2494,7 @@ int parse_stream_outer(struct in_str *inp) | |||
2494 | done_word(&temp, &ctx); | 2494 | done_word(&temp, &ctx); |
2495 | done_pipe(&ctx,PIPE_SEQ); | 2495 | done_pipe(&ctx,PIPE_SEQ); |
2496 | run_list(ctx.list_head); | 2496 | run_list(ctx.list_head); |
2497 | b_free(&temp); | ||
2497 | } while (rcode != -1); /* loop on syntax errors, return on EOF */ | 2498 | } while (rcode != -1); /* loop on syntax errors, return on EOF */ |
2498 | return 0; | 2499 | return 0; |
2499 | } | 2500 | } |