aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nvim/quickfix.c12
-rw-r--r--src/nvim/version.c2
2 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 3c59fcef03..b4f8750c4c 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -492,9 +492,9 @@ qf_init_ext (
// not a NL character.
linelen = len > LINE_MAXLEN ? LINE_MAXLEN - 1 : len;
if (growbuf == NULL) {
- growbuf = xmalloc(linelen);
+ growbuf = xmalloc(linelen + 1);
} else if (linelen > growbufsiz) {
- growbuf = xrealloc(growbuf, linelen);
+ growbuf = xrealloc(growbuf, linelen + 1);
}
growbufsiz = linelen;
linebuf = growbuf;
@@ -525,10 +525,10 @@ qf_init_ext (
linelen = LINE_MAXLEN - 1;
}
if (growbuf == NULL) {
- growbuf = xmalloc(linelen);
+ growbuf = xmalloc(linelen + 1);
growbufsiz = linelen;
} else if (linelen > growbufsiz) {
- growbuf = xrealloc(growbuf, linelen);
+ growbuf = xrealloc(growbuf, linelen + 1);
growbufsiz = linelen;
}
linebuf = growbuf;
@@ -549,13 +549,13 @@ qf_init_ext (
linelen = STRLEN(p_buf);
if (linelen > IOSIZE - 2) {
if (growbuf == NULL) {
- growbuf = xmalloc(linelen);
+ growbuf = xmalloc(linelen + 1);
growbufsiz = linelen;
} else if (linelen > growbufsiz) {
if (linelen > LINE_MAXLEN) {
linelen = LINE_MAXLEN - 1;
}
- growbuf = xrealloc(growbuf, linelen);
+ growbuf = xrealloc(growbuf, linelen + 1);
growbufsiz = linelen;
}
linebuf = growbuf;
diff --git a/src/nvim/version.c b/src/nvim/version.c
index 897daf359c..5edced3f0d 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -626,7 +626,7 @@ static int included_patches[] = {
1816,
// 1815,
// 1814 NA
- // 1813,
+ 1813,
// 1812,
// 1811 NA
// 1810 NA