aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/regexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/regexp.c')
-rw-r--r--src/nvim/regexp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/regexp.c b/src/nvim/regexp.c
index 0ce911c91a..e923449abe 100644
--- a/src/nvim/regexp.c
+++ b/src/nvim/regexp.c
@@ -2379,7 +2379,7 @@ char *reg_submatch(int no)
// Within one line: take form start to end col.
len = rsm.sm_mmatch->endpos[no].col - rsm.sm_mmatch->startpos[no].col;
if (round == 2) {
- xstrlcpy(retval, s, (size_t)len + 1);
+ xmemcpyz(retval, s, (size_t)len);
}
len++;
} else {