http://bugs.winehq.org/show_bug.cgi?id=17324
--- Comment #34 from Toralf Förster toralf.foerster@gmx.de 2009-03-02 04:51:43 --- BTW after taking a look at the soutrce code of the suspicious commit and - b/c wine-1.1.16 crashed 2 times in a row after opening a specific document - I reverted one specific line of that commit, until now it seems to work :
diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c index fc2f8e9..6d8912c 100644 --- a/dlls/usp10/usp10.c +++ b/dlls/usp10/usp10.c @@ -556,7 +556,7 @@ HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItem New_Script, pItems[index].a.eScript, index, cnt, pItems[index].iCharPos);
- for (cnt=1; cnt < cInChars; cnt++) + for (cnt=0; cnt < cInChars; cnt++) { if (pwcInChars[cnt] == '\r') New_Script = Script_CR;