aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell/ash.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 0f9f73ec3..b568013b4 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -5791,7 +5791,6 @@ exptilde(char *startp, char *p, int flags)
5791 struct passwd *pw; 5791 struct passwd *pw;
5792 const char *home; 5792 const char *home;
5793 int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR); 5793 int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR);
5794 int startloc;
5795 5794
5796 name = p + 1; 5795 name = p + 1;
5797 5796
@@ -5823,9 +5822,7 @@ exptilde(char *startp, char *p, int flags)
5823 if (!home || !*home) 5822 if (!home || !*home)
5824 goto lose; 5823 goto lose;
5825 *p = c; 5824 *p = c;
5826 startloc = expdest - (char *)stackblock();
5827 strtodest(home, SQSYNTAX, quotes); 5825 strtodest(home, SQSYNTAX, quotes);
5828 recordregion(startloc, expdest - (char *)stackblock(), 0);
5829 return p; 5826 return p;
5830 lose: 5827 lose:
5831 *p = c; 5828 *p = c;