To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68904
User mmeeks changed the following:
What |Old value |New value
================================================================================
Status|CLOSED |REOPENED
--------------------------------------------------------------------------------
Resolution|FIXED |
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Mon Jan 29 13:37:06 -0800
2007 -------
ok - turns out the patch can cause a crash in some circumstances; we need to
have:
@@ -390,8 +399,12 @@ int FtFontInfo::GetExtraGlyphKernValue(
{
if( !mpExtraKernInfo )
return 0;
- sal_Unicode cLeftChar = maGlyph2Char[ nLeftGlyph ];
- sal_Unicode cRightChar = maGlyph2Char[ nRightGlyph ];
+ sal_Unicode cLeftChar = 0, cRightChar = 0;
+ if (mpGlyph2Char)
+ {
+ cLeftChar = (*mpGlyph2Char)[ nLeftGlyph ];
+ cRightChar = (*mpGlyph2Char)[ nRightGlyph ];
+ }
return mpExtraKernInfo->GetUnscaledKernValue( cLeftChar, cRightChar );
}
for FtFontInfo::GetExtraGlyphKernValue instead. Unfortunately the crash is
rather rare ;-)
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]