summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-08-05 10:11:04 -0700
committerJunio C Hamano <gitster@pobox.com>2013-08-05 10:11:04 -0700
commitc8abf659f7b1669f949c6476e73c62c11ffd816c (patch)
tree56fee39008870c1477fb362ae82f4e8c26f02a68
parentd6cbf2fa7a51229d992c9c8d51eb635eccdd6067 (diff)
parentdc773a67e1a165c8866538fe3e754816b2e27447 (diff)
downloadgit-c8abf659f7b1669f949c6476e73c62c11ffd816c.tar.gz
Merge branch 'bc/commit-invalid-utf8'
* bc/commit-invalid-utf8: commit: typofix for xxFFF[EF] check
-rw-r--r--commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit.c b/commit.c
index e5862f6d7c..a575564a15 100644
--- a/commit.c
+++ b/commit.c
@@ -1416,7 +1416,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)