Commit 95a2cead authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

Fix return value of ExtTextOut in the case when count == 0.

parent 4cc1c140
......@@ -1856,7 +1856,10 @@ BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags,
dc->funcs->pExtTextOut(dc->physDev, 0, 0, ETO_OPAQUE, &rc, NULL, 0, NULL);
if(count == 0)
{
ret = TRUE;
goto done;
}
pt.x = x;
pt.y = y;
......
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