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





------- Additional comments from [EMAIL PROTECTED] Fri Aug 15 12:59:46 +0000 
2008 -------
Easy to fix.
Basically just replace the line
        const Set_DataSequenceRef_t &rSet = aDataSequences[ pTable ];
in SwChartDataProvider::DisposeAllDataSequences by 
        const Set_DataSequenceRef_t aSet = aDataSequences[ pTable ];
That is use a copy of the STL container and not the original.
The problem with the first solution is that a call-back from ->dispose will
implicitly remove an element of that container and thus the iterator is broken.


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