Commit 78c3af9f authored by Alexandre Julliard's avatar Alexandre Julliard

gdi32: Fix missing increment of integer data in GetCharABCWidthsFloat.

parent 36c195e6
......@@ -3367,9 +3367,9 @@ BOOL WINAPI GetCharABCWidthsFloatW( HDC hdc, UINT first, UINT last, LPABCFLOAT a
/* convert device units to logical */
for (i = first; i <= last; i++, abcf++)
{
abcf->abcfA = abc->abcA * dc->xformVport2World.eM11;
abcf->abcfB = abc->abcB * dc->xformVport2World.eM11;
abcf->abcfC = abc->abcC * dc->xformVport2World.eM11;
abcf->abcfA = abc[i - first].abcA * dc->xformVport2World.eM11;
abcf->abcfB = abc[i - first].abcB * dc->xformVport2World.eM11;
abcf->abcfC = abc[i - first].abcC * dc->xformVport2World.eM11;
}
}
HeapFree( GetProcessHeap(), 0, abc );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment