NumberParser fixes and more test

This commit is contained in:
Aleksandar Fabijanic
2012-09-14 04:56:20 +00:00
parent e5d3d23c92
commit c3e2e50af4
5 changed files with 229 additions and 224 deletions

View File

@@ -72,7 +72,7 @@ int QuotedPrintableDecoderBuf::readFromDevice()
}
else if (Poco::Ascii::isHexDigit(ch))
{
std::string hex;
std::string hex = "0x";
hex += (char) ch;
ch = _buf.sbumpc();
if (Poco::Ascii::isHexDigit(ch))