diff --git a/win32ss/gdi/ntgdi/freetype.c b/win32ss/gdi/ntgdi/freetype.c index de506f4d71d..7b379025c6b 100644 --- a/win32ss/gdi/ntgdi/freetype.c +++ b/win32ss/gdi/ntgdi/freetype.c @@ -4095,7 +4095,7 @@ IntRequestFontSize(PDC dc, PFONTGDI FontGDI, LONG lfWidth, LONG lfHeight) TT_OS2 *pOS2; TT_HoriHeader *pHori; FT_WinFNT_HeaderRec WinFNT; - LONG Ascent, Descent, Sum, EmHeight, Width64; + LONG Ascent, Descent, Sum, EmHeight; lfWidth = abs(lfWidth); if (lfHeight == 0) @@ -4205,20 +4205,21 @@ IntRequestFontSize(PDC dc, PFONTGDI FontGDI, LONG lfWidth, LONG lfHeight) #if 1 /* I think this is wrong implementation but its test result is better. */ if (lfWidth != 0) - Width64 = FT_MulDiv(lfWidth, face->units_per_EM, pOS2->xAvgCharWidth) << 6; - else - Width64 = 0; + req.width = FT_MulDiv(lfWidth, face->units_per_EM, pOS2->xAvgCharWidth) << 6; #else /* I think this is correct implementation but it is mismatching to the other metric functions. The test result is bad. */ if (lfWidth != 0) - Width64 = (FT_MulDiv(lfWidth, 96 * 5, 72 * 3) << 6); /* ??? FIXME */ - else - Width64 = 0; + req.width = (FT_MulDiv(lfWidth, 96 * 5, 72 * 3) << 6); /* ??? FIXME */ #endif + else + req.width = 0; + + /* HACK: We do not handle small widths well, so just use zero for these. See CORE-19870. */ + if (lfWidth < 10) + req.width = 0; req.type = FT_SIZE_REQUEST_TYPE_NOMINAL; - req.width = Width64; req.height = (EmHeight << 6); req.horiResolution = 0; req.vertResolution = 0;