diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-05 02:43:28 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-05 02:43:28 +0000 |
commit | 5665836ef3bf0bde027934741a35729f727c1d93 (patch) | |
tree | c45baaa1848485f5385dfcf88379410ff21260fa /0001-invalid-read-memory-access-624.patch | |
parent | f14c45fe931d1ca9e47e1466f33515fa6253ef0a (diff) |
automatic import of hunspellopeneuler24.03_LTS
Diffstat (limited to '0001-invalid-read-memory-access-624.patch')
-rw-r--r-- | 0001-invalid-read-memory-access-624.patch | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/0001-invalid-read-memory-access-624.patch b/0001-invalid-read-memory-access-624.patch new file mode 100644 index 0000000..66b55e7 --- /dev/null +++ b/0001-invalid-read-memory-access-624.patch @@ -0,0 +1,25 @@ +From ac938e2ecb48ab4dd21298126c7921689d60571b Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= <caolanm@redhat.com> +Date: Tue, 12 Nov 2019 20:03:15 +0000 +Subject: [PATCH] invalid read memory access #624 + +--- + src/hunspell/suggestmgr.cxx | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/hunspell/suggestmgr.cxx b/src/hunspell/suggestmgr.cxx +index dba084e..c23f165 100644 +--- a/src/hunspell/suggestmgr.cxx ++++ b/src/hunspell/suggestmgr.cxx +@@ -2040,7 +2040,7 @@ int SuggestMgr::leftcommonsubstring( + int l2 = su2.size(); + // decapitalize dictionary word + if (complexprefixes) { +- if (su1[l1 - 1] == su2[l2 - 1]) ++ if (l1 && l2 && su1[l1 - 1] == su2[l2 - 1]) + return 1; + } else { + unsigned short idx = su2.empty() ? 0 : (su2[0].h << 8) + su2[0].l; +-- +2.23.0 + |