Merge pull request #767 from hmich/xml-encoder-extended-ascii

Do not encode extended ASCII characters in XML reporter
This commit is contained in:
Phil Nash 2017-01-09 18:37:52 +00:00 committed by GitHub
commit 5b00fd40ba
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ namespace Catch {
default:
// Escape control chars - based on contribution by @espenalb in PR #465 and
// by @mrpi PR #588
if ( ( c < '\x09' ) || ( c > '\x0D' && c < '\x20') || c=='\x7F' )
if ( ( c >= 0 && c < '\x09' ) || ( c > '\x0D' && c < '\x20') || c=='\x7F' )
os << "&#x" << std::uppercase << std::hex << std::setfill('0') << std::setw(2) << static_cast<int>( c ) << ';';
else
os << c;