From 082b170efdb062ec735eafa5213dbeb18fd7ecaa Mon Sep 17 00:00:00 2001 From: root Date: Fri, 25 Jul 2008 14:29:39 -0700 Subject: additional special characters to trap, added back free() after additional testing, removed generated files from project. --- parse.y | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'parse.y') diff --git a/parse.y b/parse.y index dd2f337..f4e09ec 100644 --- a/parse.y +++ b/parse.y @@ -1983,6 +1983,8 @@ shell_getc (remove_quoted_newline) c == ')' || c == '>' || c == '<' || + c == '|' || + c == '`' || c == '$') && shell_input_line[i-1] != '\\') { if (no_escape == 0) { @@ -2046,6 +2048,7 @@ shell_getc (remove_quoted_newline) history_buf[history_index] = '\0'; expansions = pre_process_line (history_buf, 1, 1); flag = expansions != history_buf; + free(history_buf); } else { expansions = pre_process_line (shell_input_line, 1, 1); @@ -2054,7 +2057,7 @@ shell_getc (remove_quoted_newline) # if defined (BANG_HISTORY) history_expansion_inhibited = old_hist; # endif - if (expansions != shell_input_line) + if (flag) { free (shell_input_line); shell_input_line = expansions; -- cgit v1.2.3