mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
Fix bug in SVG
This commit is contained in:
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user