diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-21 21:37:20 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-21 21:37:20 +0200 |
commit | 2eec59e30b5932b957387d4b513958062feb1905 (patch) | |
tree | 682d8d0dddb4e2b0e4ebd3f6ca4ef544c7e01431 /src/regexp.c | |
parent | f878bf0da229d6abad4767e8f5da883cce4eaaca (diff) | |
download | vim-git-2eec59e30b5932b957387d4b513958062feb1905.tar.gz |
updated for version 7.3.1000v7.3.1000
Problem: Typo in char value causes out of bounds access.
Solution: Fix character value. (Klemens Baum)
Diffstat (limited to 'src/regexp.c')
-rw-r--r-- | src/regexp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regexp.c b/src/regexp.c index 29b40813f..c7b25c2b2 100644 --- a/src/regexp.c +++ b/src/regexp.c @@ -6899,7 +6899,7 @@ mb_decompose(c, c1, c2, c3) { decomp_T d; - if (c >= 0x4b20 && c <= 0xfb4f) + if (c >= 0xfb20 && c <= 0xfb4f) { d = decomp_table[c - 0xfb20]; *c1 = d.a; |