Cleaned up some code to make the intent clearer.

This commit is contained in:
brectanus
2007-07-27 15:30:25 +00:00
parent 1bb59208e5
commit c9c1cf1264

View File

@@ -555,7 +555,7 @@ int urldecode_uni_nonstrict_inplace_ex(unsigned char *input, long int input_len)
&& ((input[i + 2] == 'f') || (input[i + 2] == 'F'))
&& ((input[i + 3] == 'f') || (input[i + 3] == 'F')))
{
*d += 0x20;
(*d) += 0x20;
}
d++;