aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lash.c2
-rw-r--r--sh.c2
-rw-r--r--shell/lash.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/lash.c b/lash.c
index 8edb78369..1977d5fdc 100644
--- a/lash.c
+++ b/lash.c
@@ -936,7 +936,7 @@ char * strsep_space( char *string, int * index)
return NULL;
}
- token = xmalloc(*index);
+ token = xmalloc(*index+1);
token[*index] = '\0';
strncpy(token, string, *index);
diff --git a/sh.c b/sh.c
index 8edb78369..1977d5fdc 100644
--- a/sh.c
+++ b/sh.c
@@ -936,7 +936,7 @@ char * strsep_space( char *string, int * index)
return NULL;
}
- token = xmalloc(*index);
+ token = xmalloc(*index+1);
token[*index] = '\0';
strncpy(token, string, *index);
diff --git a/shell/lash.c b/shell/lash.c
index 8edb78369..1977d5fdc 100644
--- a/shell/lash.c
+++ b/shell/lash.c
@@ -936,7 +936,7 @@ char * strsep_space( char *string, int * index)
return NULL;
}
- token = xmalloc(*index);
+ token = xmalloc(*index+1);
token[*index] = '\0';
strncpy(token, string, *index);