diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-08-05 09:52:28 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-05 09:53:38 -0700 |
commit | dc773a67e1a165c8866538fe3e754816b2e27447 (patch) | |
tree | 69bb76b9378a4236f7b74668cde87132c27388b3 | |
parent | commit: reject non-characters (diff) | |
download | tgif-dc773a67e1a165c8866538fe3e754816b2e27447.tar.xz |
commit: typofix for xxFFF[EF] check
We wanted to catch all codepoints that ends with FFFE and FFFF,
not with 0FFFE and 0FFFF.
Noticed and corrected by Peter Krefting.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1306,7 +1306,7 @@ static int find_invalid_utf8(const char *buf, int len) if ((codepoint & 0x1ff800) == 0xd800) return bad_offset; /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */ - if ((codepoint & 0xffffe) == 0xfffe) + if ((codepoint & 0xfffe) == 0xfffe) return bad_offset; /* So are anything in the range U+FDD0..U+FDEF. */ if (codepoint >= 0xfdd0 && codepoint <= 0xfdef) |