diff options
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index 4bc4f55d0..4bf0615ea 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -10941,14 +10941,14 @@ static void freestrings(struct strpush *sp) | |||
10941 | INT_OFF; | 10941 | INT_OFF; |
10942 | do { | 10942 | do { |
10943 | struct strpush *psp; | 10943 | struct strpush *psp; |
10944 | 10944 | #if ENABLE_ASH_ALIAS | |
10945 | if (sp->ap) { | 10945 | if (sp->ap) { |
10946 | sp->ap->flag &= ~ALIASINUSE; | 10946 | sp->ap->flag &= ~ALIASINUSE; |
10947 | if (sp->ap->flag & ALIASDEAD) { | 10947 | if (sp->ap->flag & ALIASDEAD) { |
10948 | unalias(sp->ap->name); | 10948 | unalias(sp->ap->name); |
10949 | } | 10949 | } |
10950 | } | 10950 | } |
10951 | 10951 | #endif | |
10952 | psp = sp; | 10952 | psp = sp; |
10953 | sp = sp->spfree; | 10953 | sp = sp->spfree; |
10954 | 10954 | ||