diff options
author | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2015-09-23 21:40:24 +0300 |
---|---|---|
committer | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2015-09-23 21:40:24 +0300 |
commit | ca11b2fa4b87642d6e1bbd000bfa74e4922b390b (patch) | |
tree | 48f0889383ed6dd9eea02a2472a7373186ca8f03 | |
parent | a7f0846a6bda8ec789288f1ed3db2d6d82a72322 (diff) |
Fix _xml_unescape, as suggested by @reduz
-rw-r--r-- | core/ustring.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ustring.cpp b/core/ustring.cpp index f6d8e6c1fe..e5419effcb 100644 --- a/core/ustring.cpp +++ b/core/ustring.cpp @@ -3172,12 +3172,12 @@ static _FORCE_INLINE_ int _xml_unescape(const CharType *p_src,int p_src_len,Char } else if (p_src_len>=4 && p_src[1]=='g' && p_src[2]=='t' && p_src[3]==';') { if (p_dst) - *p_dst='<'; + *p_dst='>'; eat=4; } else if (p_src_len>=4 && p_src[1]=='l' && p_src[2]=='t' && p_src[3]==';') { if (p_dst) - *p_dst='>'; + *p_dst='<'; eat=4; } else if (p_src_len>=5 && p_src[1]=='a' && p_src[2]=='m' && p_src[3]=='p' && p_src[4]==';') { |