Peter Krefting:

-               /* U+FFFE and U+FFFF are guaranteed non-characters. */
-               if ((codepoint & 0x1ffffe) == 0xfffe)
+               /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
+               if ((codepoint & 0xffffe) == 0xfffe)
+                       return bad_offset;

Drats, there is an F too many in the bitmask, it should be:

 +              if ((codepoint & 0xfffe) == 0xfffe)

--
\\// Peter - http://www.softwolves.pp.se/
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to