http://bugs.winehq.org/show_bug.cgi?id=59944 Maotong Zhang <zmtong1988@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |zmtong1988@gmail.com --- Comment #10 from Maotong Zhang <zmtong1988@gmail.com> --- It looks like nFit being passed in is 0, which causes issues in the later calculations. static BOOL SYSLINK_WrapLine (LPWSTR Text, WCHAR BreakChar, int x, int *LineLen, int nFit, LPSIZE Extent) { int i; + if (nFit <= 1) nFit = (*LineLen > 1) ? *LineLen : 1; for (i = 0; i < nFit; i++) if (Text[i] == '\r' || Text[i] == '\n') break; ...... } After this fix, it should correctly render at least one line. Further research may be necessary. -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.