diff options
Diffstat (limited to 'expand.c')
-rw-r--r-- | expand.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -424,7 +424,7 @@ expand_argument (str, end) { char *tmp; - if (*end == '\0') + if (!end || *end == '\0') tmp = str; else { |