<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>
Hi!<br><br><a href="https://bugs.freedesktop.org/show_bug.cgi?id=45522">https://bugs.freedesktop.org/show_bug.cgi?id=45522</a><br><br>There's an attached odt file with a table in it. Copying the table to other LO programs (Calc, etc) causes LO to crash.<br>After inspection I realized that the problem is in sw/source/core/table/swtable.cxx<br>There is a struct definition in that file SwTableCellInfo::Impl with a void setTable(const SwTable * pTable) method.<br><br>Error is in if (m_pTabFrm-&gt;IsFollow()) line.<br>m_pTabFrm = SwIterator&lt;SwTabFrm,SwFmt&gt;::FirstElement(*pFrmFmt);<br>Problem is that SwIterator&lt;SwTabFrm,SwFmt&gt;::FirstElement(*pFrmFmt); can return with NULL, so asking for -&gt;IsFollow() can cause errors.<br><br>After adding a check ( if ( m_pTabFrm ) ), crash is gone, although copying the table is still buggy. In the pasted table the whole layout is gone. All the data are in the first column in Calc and only the upper part of the table is copied in Draw and Impress.<br>If I copy the table without the cell containing 'Wind Class', than it's ok, so that cell somehow ruins the copy mechanism.<br><br>Someone has any idea why?<br><br>Szabolcs<br>                                               </div></body>
</html>