aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/hush.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/shell/hush.c b/shell/hush.c
index 43e715aff..39d3c01de 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -1901,9 +1901,14 @@ static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
1901#endif 1901#endif
1902 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */ 1902 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
1903 case_default: { 1903 case_default: {
1904 bool exp_len = false, exp_null = false; 1904 bool exp_len = false;
1905 char *var = arg, exp_save, exp_op, *exp_word; 1905 bool exp_null = false;
1906 char *var = arg;
1907 char exp_save = exp_save; /* for compiler */
1908 char exp_op = exp_op; /* for compiler */
1909 char *exp_word = exp_word; /* for compiler */
1906 size_t exp_off = 0; 1910 size_t exp_off = 0;
1911
1907 *p = '\0'; 1912 *p = '\0';
1908 arg[0] = first_ch & 0x7f; 1913 arg[0] = first_ch & 0x7f;
1909 1914