From ce4a586edb6abd90c1036666159f831bd2a58895 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 14 Mar 2001 18:57:54 +0000 Subject: I forgot to malloc space for the NULL. -Erik --- sh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sh.c') 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); -- cgit v1.2.3