To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=68980


User er changed the following:

                What    |Old value                 |New value
================================================================================
             Assigned to|ihi                       |khong
--------------------------------------------------------------------------------
            Subcomponent|code                      |i18npool
--------------------------------------------------------------------------------
        Target milestone|---                       |OOo 2.1
--------------------------------------------------------------------------------




------- Additional comments from [EMAIL PROTECTED] Mon Aug 28 08:28:10 -0700 
2006 -------
That's probably a RuleBasedBreakIterator allocated in
i18npool/source/breakiterator/breakiterator_unicode.cxx
BreakIterator_Unicode::loadICUBreakIterator() and assigned to
icuBI->aBreakIterator. BreakIterator_Unicode::~BreakIterator_Unicode() should
have the following code inserted at top, before the other deletes:

if (icuBI->aBreakIterator)
{
    delete icuBI->aBreakIterator;
    icuBI->aBreakIterator=NULL;
}

It is inportant to set icuBI->aBreakIterator=NULL as icuBI itself may be a
pointer to one of character,word,sentence,line and otherwise the BI would be
freed twice.

Karl, please take care of that in CWS icuupgrade.

Thanks
  Eike

---------------------------------------------------------------------
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]

Reply via email to