1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0023842: Undefined behavior: Variable 'thePsFont' is used as parameter and destination in s[n]printf()

This commit is contained in:
kgv 2013-03-20 15:06:32 +04:00
parent 5c686fff42
commit 8b224a0992

View File

@ -90,10 +90,13 @@ namespace
if (isBold)
{
sprintf (thePsFont, "%s-%s", TheFamily[aFontId], "Bold");
if (isItalic)
{
sprintf (thePsFont, "%s%s", thePsFont, TheItalic[aFontId]);
sprintf (thePsFont, "%s-Bold%s", TheFamily[aFontId], TheItalic[aFontId]);
}
else
{
sprintf (thePsFont, "%s-Bold", TheFamily[aFontId]);
}
}
else if (isItalic)