ash: unbreak PS1 parsing after "ash: parser: Add syntax stack..." commit
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 4 Apr 2018 11:59:53 +0000 (13:59 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 4 Apr 2018 11:59:53 +0000 (13:59 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c

index ed1a4416c20f2878baf9782db8aff5dcd99d049b..5586015439cf5d58030731d43c838702fba74c2a 100644 (file)
@@ -11959,7 +11959,7 @@ readtoken1(int c, int syntax, char *eofmark, int striptabs)
        smallint pssyntax;   /* we are expanding a prompt string */
        IF_BASH_DOLLAR_SQUOTE(smallint bash_dollar_squote = 0;)
        /* syntax stack */
-       struct synstack synbase = { .syntax = syntax };
+       struct synstack synbase = { };
        struct synstack *synstack = &synbase;
 
 #if ENABLE_ASH_EXPAND_PRMT
@@ -11969,6 +11969,8 @@ readtoken1(int c, int syntax, char *eofmark, int striptabs)
 #else
        pssyntax = 0; /* constant */
 #endif
+       synstack->syntax = syntax;
+
        if (syntax == DQSYNTAX)
                synstack->dblquote = 1;
        quotef = 0;