summaryrefslogtreecommitdiff
path: root/commands.c
diff options
context:
space:
mode:
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.c b/commands.c
index 93d2e39..ee6fc6e 100644
--- a/commands.c
+++ b/commands.c
@@ -313,7 +313,7 @@ chop_commands (struct commands *cmds)
nlines += 2;
lines = xrealloc (lines, nlines * sizeof (char *));
}
- lines[idx++] = savestring (p, end - p);
+ lines[idx++] = xstrndup (p, end - p);
p = end;
if (*p != '\0')
++p;