diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-14 13:31:07 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-17 14:04:29 +0200 |
commit | 64e40e166f07e58b3f19f62ff674933e57500aae (patch) | |
tree | b1e768e6edd7dd01c11b5b37045124c3477025d3 /sw | |
parent | 24057a7823c15bac4ec5f4229c20cf61f660c6a0 (diff) |
cid#705937 dereference before null check
Change-Id: I844583f704afde8d563e3947cb6fabeb7fe83bdf
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8graf.cxx | 2 |
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()); } } |