summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-14 15:16:47 +0200
committerNoel Grandin <noel@peralex.com>2014-02-17 14:04:32 +0200
commita02ec9ebef8608c4f69e8e674a894d09add68dba (patch)
treec27af67e88e26687a4bea039706fb61d65c54a9f /svx
parentc31644d4953ab57b65daafaed090fab89b8ff267 (diff)
cid#705907 dereference before null check
Change-Id: I51f0331830fc6d6eaae1ca33c7387e76390ec1cb
Diffstat (limited to 'svx')
-rw-r--r--svx/source/table/svdotable.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx
index f667c0bd4ae2..3db820691fb8 100644
--- a/svx/source/table/svdotable.cxx
+++ b/svx/source/table/svdotable.cxx
@@ -2187,7 +2187,7 @@ void SdrTableObj::AddToHdlList(SdrHdlList& rHdlList) const
}
// now add visible edges to row and column handles
- if( mpImpl && mpImpl->mpLayouter )
+ if( mpImpl->mpLayouter )
{
TableLayouter& rLayouter = *mpImpl->mpLayouter;