https://issues.apache.org/ooo/show_bug.cgi?id=118640
--- Comment #16 from Armin Le Grand <[email protected]> --- Has nothing to do with STL, the buffer accessed is already destroyed. That again happens due to the mechanism used to import the stuff: For every part to be imported a FragmentHandler derivate (as needed for the context) is created and set at the parser. This triggers the deletion of the previous FragmentHandler which will create imported elements in its destructor. At the end of import the parser is destroyed and that will execute the last FragmentHandler destructor which will create imported objects. That last FragmentHandler is the form control importer which is normally empty and does nothing, thus will not stumble over the already destroyed buffer maRelationsMap. In the bugdoc this is different; there is content for this and it will try to use the already destroyed maRelationsMap. Thus this should happen with all pptx containing FormControls, trying to create one as example (how to iinsert a form control to ms ppt2010?) -- You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug. You are watching all bug changes.
