lib/xmltree/xmlinterface.cpp: ignore characters less than 0x20 when saving to xml

Origin commit data
------------------
Branch: ni/coolstream
Commit: 628d3a1855
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-03-16 (Fri, 16 Mar 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-03-16 20:35:41 +04:00
parent 3df9657e8d
commit 30a74a8075

View File

@@ -114,7 +114,8 @@ std::string convert_UTF8_To_UTF8_XML(const char* s)
r += "&apos;";
break;
default:
r += *s;
if ((unsigned char)*s >= 32)
r += *s;
}
s++;
}