aboutsummaryrefslogtreecommitdiff
path: root/lash.c
diff options
context:
space:
mode:
Diffstat (limited to 'lash.c')
-rw-r--r--lash.c2
1 files changed, 1 insertions, 1 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)
936 return NULL; 936 return NULL;
937 } 937 }
938 938
939 token = xmalloc(*index); 939 token = xmalloc(*index+1);
940 token[*index] = '\0'; 940 token[*index] = '\0';
941 strncpy(token, string, *index); 941 strncpy(token, string, *index);
942 942