aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 2ad8ebacb..292b8b2e3 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -5328,9 +5328,12 @@ static int parse_stream_dquoted(o_string *as_string,
5328 * within double quotes by preceding it with a backslash. 5328 * within double quotes by preceding it with a backslash.
5329 */ 5329 */
5330 if (strchr("$`\"\\", next) != NULL) { 5330 if (strchr("$`\"\\", next) != NULL) {
5331 o_addqchr(dest, i_getch(input)); 5331 ch = i_getch(input);
5332 o_addqchr(dest, ch);
5333 nommu_addchr(as_string, ch);
5332 } else { 5334 } else {
5333 o_addqchr(dest, '\\'); 5335 o_addqchr(dest, '\\');
5336 nommu_addchr(as_string, '\\');
5334 } 5337 }
5335 goto again; 5338 goto again;
5336 } 5339 }