diff options
Diffstat (limited to 'src/mir_core')
-rwxr-xr-x | src/mir_core/src/http.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mir_core/src/http.cpp b/src/mir_core/src/http.cpp index 5539eef58c..d1386e4519 100755 --- a/src/mir_core/src/http.cpp +++ b/src/mir_core/src/http.cpp @@ -53,8 +53,7 @@ MIR_CORE_DLL(char*) mir_urlEncode(const char *szUrl) const BYTE *s;
int outputLen;
for (outputLen = 0, s = (const BYTE*)szUrl; *s; s++) {
- if ((*s & 0x80) ||
- ('0' <= *s && *s <= '9') || //0-9
+ if (('0' <= *s && *s <= '9') || //0-9
('A' <= *s && *s <= 'Z') || //ABC...XYZ
('a' <= *s && *s <= 'z') || //abc...xyz
*s == '-' || *s == '_' || *s == '.' || *s == ' ' || *s == '~')
@@ -69,8 +68,7 @@ MIR_CORE_DLL(char*) mir_urlEncode(const char *szUrl) char *d = szOutput;
for (s = (const BYTE*)szUrl; *s; s++) {
- if ((*s & 0x80) ||
- ('0' <= *s && *s <= '9') || //0-9
+ if (('0' <= *s && *s <= '9') || //0-9
('A' <= *s && *s <= 'Z') || //ABC...XYZ
('a' <= *s && *s <= 'z') || //abc...xyz
*s == '-' || *s == '_' || *s == '.' || *s == '~')
|