diff options
author | simon <none@none> | 2013-05-29 14:42:19 -0700 |
---|---|---|
committer | simon <none@none> | 2013-05-29 14:42:19 -0700 |
commit | 507ce0d84fc3e7717c7c9ae58dcdae7785936f65 (patch) | |
tree | a7dde82693b2297a27024a00624c1ec9f81c2d0c /indra/llcommon/lluri.cpp | |
parent | 473474b94969799d2835191072c5bca1b7d431d8 (diff) | |
parent | 3698aece0d2b396b55b46189e8ea7ee02da9483b (diff) |
Merge downstream code
Diffstat (limited to 'indra/llcommon/lluri.cpp')
-rwxr-xr-x | indra/llcommon/lluri.cpp | 29 |
1 files changed, 24 insertions, 5 deletions
diff --git a/indra/llcommon/lluri.cpp b/indra/llcommon/lluri.cpp index 21456a599b..37f5b3d6a3 100755 --- a/indra/llcommon/lluri.cpp +++ b/indra/llcommon/lluri.cpp @@ -129,11 +129,30 @@ std::string LLURI::unescape(const std::string& str) { ++it; if(it == end) break; - U8 c = hex_as_nybble(*it++); - c = c << 4; - if (it == end) break; - c |= hex_as_nybble(*it); - ostr.put((char)c); + + if(is_char_hex(*it)) + { + U8 c = hex_as_nybble(*it++); + + c = c << 4; + if (it == end) break; + + if(is_char_hex(*it)) + { + c |= hex_as_nybble(*it); + ostr.put((char)c); + } + else + { + ostr.put((char)c); + ostr.put(*it); + } + } + else + { + ostr.put('%'); + ostr.put(*it); + } } else { |