Fix bug in SVG

This commit is contained in:
Kirill Polyakov
2025-10-28 12:15:14 +03:00
parent e96ceab1e3
commit bfffcda0c5

View File

@ -136,7 +136,7 @@ namespace SVG
const char* pCheckValue = pValue;
while ('\0' != *pCheckValue)
{
if (0x32 >= *pCheckValue++)
if (std::isprint(static_cast<unsigned char>(*pCheckValue++)))
{
bFoundedSymbol = true;
break;