Skip to content

Commit

Permalink
Merge branch 'bc/commit-invalid-utf8'
Browse files Browse the repository at this point in the history
* bc/commit-invalid-utf8:
  commit: typofix for xxFFF[EF] check
  • Loading branch information
Junio C Hamano committed Aug 5, 2013
2 parents d6cbf2f + dc773a6 commit c8abf65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c8abf65

Please sign in to comment.