summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-14 13:31:07 +0200
committerNoel Grandin <noel@peralex.com>2014-02-17 14:04:29 +0200
commit64e40e166f07e58b3f19f62ff674933e57500aae (patch)
treeb1e768e6edd7dd01c11b5b37045124c3477025d3 /sw
parent24057a7823c15bac4ec5f4229c20cf61f660c6a0 (diff)
cid#705937 dereference before null check
Change-Id: I844583f704afde8d563e3947cb6fabeb7fe83bdf
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/ww8graf.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8graf.cxx b/sw/source/filter/ww8/ww8graf.cxx
index 69a7d8204185..81d62dcc03ff 100644
--- a/sw/source/filter/ww8/ww8graf.cxx
+++ b/sw/source/filter/ww8/ww8graf.cxx
@@ -3065,7 +3065,7 @@ void SwWW8ImplReader::GrafikCtor() // Fuer SVDraw und VCControls und Escher
pFormImpl = new SwMSConvertControls(mpDocShell, pPaM);
pWWZOrder = new wwZOrderer(sw::util::SetLayer(rDoc), pDrawPg,
- pMSDffManager ? pMSDffManager->GetShapeOrders() : 0);
+ pMSDffManager->GetShapeOrders());
}
}