fix percent decode utf8 error

This commit is contained in:
Alexander Holland 2016-05-05 13:34:15 +02:00
parent 9487a9b3c2
commit f86cffd8e6

View File

@ -3629,13 +3629,14 @@ String String::percent_decode() const {
CharString pe;
for(int i=0;i<length();i++) {
uint8_t c=operator[](i);
CharString cs = utf8();
for(int i=0;i<cs.length();i++) {
uint8_t c = cs[i];
if (c=='%' && i<length()-2) {
uint8_t a = LOWERCASE(operator[](i+1));
uint8_t b = LOWERCASE(operator[](i+2));
uint8_t a = LOWERCASE(cs[i+1]);
uint8_t b = LOWERCASE(cs[i+2]);
c=0;
if (a>='0' && a<='9')