mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 23:13:00 +02:00
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:
@@ -114,7 +114,8 @@ std::string convert_UTF8_To_UTF8_XML(const char* s)
|
||||
r += "'";
|
||||
break;
|
||||
default:
|
||||
r += *s;
|
||||
if ((unsigned char)*s >= 32)
|
||||
r += *s;
|
||||
}
|
||||
s++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user