Spout a FIXME if we try to call ExtTextOut on an open path.
diff --git a/objects/text.c b/objects/text.c index 2692f71..79e6a4c 100644 --- a/objects/text.c +++ b/objects/text.c
@@ -168,7 +168,9 @@ DC * dc = DC_GetDCUpdate( hdc ); if (dc) { - if(dc->funcs->pExtTextOut) + if(PATH_IsPathOpen(dc->path)) + FIXME("called on an open path\n"); + else if(dc->funcs->pExtTextOut) ret = dc->funcs->pExtTextOut(dc->physDev,x,y,flags,lprect,str,count,lpDx); GDI_ReleaseObj( hdc ); }