diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-24 16:05:12 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-24 17:16:41 +0100 |
commit | 2e67b2c1c38d3afa56e070241f529fa003c6f8b7 (patch) | |
tree | 036c7dd9e72a73ec0380551ba53d62745af02969 | |
parent | 223c8a870f728e94ed6d3c6ac9589ac0a24a146e (diff) |
coverity#735793 Explicit null dereferenced
Change-Id: If2c4821466783908a6ac2bec3dc7a913e744fccb
-rw-r--r-- | sc/source/core/data/fillinfo.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/fillinfo.cxx b/sc/source/core/data/fillinfo.cxx index 650d28b51641..f30f8ab0e717 100644 --- a/sc/source/core/data/fillinfo.cxx +++ b/sc/source/core/data/fillinfo.cxx @@ -1108,7 +1108,7 @@ void ScDocument::FillInfo( if( pTLBR ) rArray.SetCellStyleTLBR( nFirstCol, nFirstRow, svx::frame::Style( pTLBR->GetLine(), fRowScale ) ); - if( rInfo.mpBLTRLine ) + if( pBLTR ) rArray.SetCellStyleBLTR( nFirstCol, nFirstRow, svx::frame::Style( pBLTR->GetLine(), fRowScale ) ); } } |