diff options
Diffstat (limited to 'debian/patches/CVE-2022-0714.patch')
-rw-r--r-- | debian/patches/CVE-2022-0714.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/debian/patches/CVE-2022-0714.patch b/debian/patches/CVE-2022-0714.patch new file mode 100644 index 0000000..1b86d51 --- /dev/null +++ b/debian/patches/CVE-2022-0714.patch @@ -0,0 +1,22 @@ +From: Markus Koschany <apo@debian.org> +Date: Sun, 30 Oct 2022 21:56:04 +0100 +Subject: CVE-2022-0714 + +Origin: https://github.com/vim/vim/commit/4e889f98e95ac05d7c8bd3ee933ab4d47820fdfa +--- + src/edit.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/edit.c b/src/edit.c +index eac4803..df84631 100644 +--- a/src/edit.c ++++ b/src/edit.c +@@ -2113,6 +2113,8 @@ change_indent( + new_cursor_col += (*mb_ptr2len)(ptr + new_cursor_col); + else + ++new_cursor_col; ++ if (ptr[new_cursor_col] == NUL) ++ break; + vcol += lbr_chartabsize(ptr, ptr + new_cursor_col, (colnr_T)vcol); + } + vcol = last_vcol; |