mirror of
https://github.com/aria2/aria2.git
synced 2026-04-02 10:55:00 +00:00
Removed condition always evaluated to true.
This commit is contained in:
@@ -205,7 +205,7 @@ decodeString
|
||||
s += c2;
|
||||
s += c3;
|
||||
s += c4;
|
||||
} else if(codepoint <= 0xffffu) {
|
||||
} else {
|
||||
unsigned char c3 = 0x80u | (codepoint & 0x003Fu);
|
||||
unsigned char c2 = 0x80u | ((codepoint >> 6) & 0x003Fu);
|
||||
unsigned char c1 = 0xE0u | (codepoint >> 12);
|
||||
|
||||
Reference in New Issue
Block a user