To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=92304
------- Additional comments from [email protected] Wed Aug 18 13:05:43 +0000 2010 ------- root cause is that SwUndoPageDescCreate keeps a naked pointer to the created SwPageDesc. As the SwPageDescs array becomes the owner of the SwPageDesc (being free to delete it), that is broken by design. As a fix SwPageDescs needs to use refcounting pointers (e.g. a ::std::vector< ::std::tr1::shared_ptr< SwPageDesc >) so that the ownership of the PageDesc can be shared with the undo object. --------------------------------------------------------------------- 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]
