Kaydet (Commit) 101e6747 authored tarafından Caolán McNamara's avatar Caolán McNamara

Resolves: rhbz#684620 crash with NULL pTableBox

üst 81dd6062
......@@ -1701,7 +1701,7 @@ BOOL SwCursor::LeftRight( BOOL bLeft, USHORT nCnt, USHORT nMode,
if ( pTableBoxStartNode )
{
const SwTableBox* pTableBox = pTableBoxStartNode->GetTblBox();
if ( pTableBox->getRowSpan() < 1 )
if ( pTableBox && pTableBox->getRowSpan() < 1 )
{
// Store the row span offset:
mnRowSpanOffset = pTableBox->getRowSpan();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment