summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-24 16:05:12 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-24 17:16:41 +0100
commit2e67b2c1c38d3afa56e070241f529fa003c6f8b7 (patch)
tree036c7dd9e72a73ec0380551ba53d62745af02969
parent223c8a870f728e94ed6d3c6ac9589ac0a24a146e (diff)
coverity#735793 Explicit null dereferenced
Change-Id: If2c4821466783908a6ac2bec3dc7a913e744fccb
-rw-r--r--sc/source/core/data/fillinfo.cxx2
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 ) );
}
}