summaryrefslogtreecommitdiff
path: root/Src/hist.c
diff options
context:
space:
mode:
Diffstat (limited to 'Src/hist.c')
-rw-r--r--Src/hist.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/hist.c b/Src/hist.c
index 33c5ccfd9..0a557a3cd 100644
--- a/Src/hist.c
+++ b/Src/hist.c
@@ -2260,7 +2260,7 @@ bufferwords(LinkList list, char *buf, int *index)
if (zlegetlineptr) {
linein = zlegetlineptr(&ll, &cs);
} else {
- linein = "";
+ linein = ztrdup("");
ll = cs = 0;
}
zlell = ll + 1; /* length of line plus space added below */
@@ -2287,6 +2287,7 @@ bufferwords(LinkList list, char *buf, int *index)
p[zlell] = '\0';
inpush(p, 0, NULL);
}
+ zsfree(linein);
}
if (zlecs)
zlecs--;