Removed condition always evaluated to true.

pull/1/head release-1.11.1
Tatsuhiro Tsujikawa 2011-03-29 23:22:36 +09:00
parent 4ee610f4b3
commit aabb1f963e
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ decodeString
s += c2; s += c2;
s += c3; s += c3;
s += c4; s += c4;
} else if(codepoint <= 0xffffu) { } else {
unsigned char c3 = 0x80u | (codepoint & 0x003Fu); unsigned char c3 = 0x80u | (codepoint & 0x003Fu);
unsigned char c2 = 0x80u | ((codepoint >> 6) & 0x003Fu); unsigned char c2 = 0x80u | ((codepoint >> 6) & 0x003Fu);
unsigned char c1 = 0xE0u | (codepoint >> 12); unsigned char c1 = 0xE0u | (codepoint >> 12);