Del Merritt wrote: > Popup texts (repeats generally elided): > > Error: Trying to resize readonly stream by seeking, could be a wrong offset! > From File > /export/home/downloads/OpenOffice/OO3_src/DEV300_m43/sot/source/sdstor/stgdir.cxx > > at Line 419 > Abort ? (Yes=abort / No=ignore / Cancel=core dump)
The different parts of the doc file are read in several streams, and as we are reading the file, they are opened in read-only mode. Sometimes we read an offset value in a stream and then try to seek a stream to that position. If the stream actually is smaller than the desired position, this assertion pops up. The root cause can be that we either misinterpreted the value we used as offset, the value is not valid, Word has written garbage to the file or we have an internal memory or file structure corruption. It's hard to predict what is true in your case and if this is responsible for one of the problems you have found. > Error: The source and the destination models should have different > persistences! Problems are possible! > From File > /export/home/downloads/OpenOffice/OO3_src/DEV300_m43/svx/source/svdraw/svdoole2.cxx > > at Line 1343 > Abort ? (Yes=abort / No=ignore / Cancel=core dump) > > > Error: The destination model must have a persistence! Please submit an > issue! > From File > /export/home/downloads/OpenOffice/OO3_src/DEV300_m43/svx/source/svdraw/svdoole2.cxx > > at Line 1342 > Abort ? (Yes=abort / No=ignore / Cancel=core dump) > > Error: The source and the destination models should have different > persistences! Problems are possible! > From File > /export/home/downloads/OpenOffice/OO3_src/DEV300_m43/svx/source/svdraw/svdoole2.cxx > > at Line 1343 > Abort ? (Yes=abort / No=ignore / Cancel=core dump) These assertions indicate that something went haywire in the EmbeddedObjectContainer or in the drawing layer. If you want to investigate this, you will need to see where embedded objects are inserted into the EmbeddedObjectContainer (you will find it in comphelper). Seems to be an interesting document. :-) Regards, Mathias -- Mathias Bauer (mba) - Project Lead OpenOffice.org Writer OpenOffice.org Engineering at Sun: http://blogs.sun.com/GullFOSS Please don't reply to "[email protected]". I use it for the OOo lists and only rarely read other mails sent to it. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
