summaryrefslogtreecommitdiff
path: root/sw/source/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-23 16:27:25 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-23 18:50:59 +0100
commit72b0a06fb2e8cc923955b690332cfe525f295a8e (patch)
treeb30519833a5987a2c571549edcfcec2fbeccfdbd /sw/source/filter
parent14a86738287a2f5b66e89aa0a9f5cb66ce3e7f53 (diff)
coverity#708480 Uninitialized scalar field
Change-Id: I1688dee1e6a7e6fd7c63a2580f3625e1414c5f89
Diffstat (limited to 'sw/source/filter')
-rw-r--r--sw/source/filter/html/wrthtml.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/sw/source/filter/html/wrthtml.hxx b/sw/source/filter/html/wrthtml.hxx
index 7d4b3106044b..ca79e903efe6 100644
--- a/sw/source/filter/html/wrthtml.hxx
+++ b/sw/source/filter/html/wrthtml.hxx
@@ -234,7 +234,11 @@ struct SwHTMLFmtInfo
pFmt( pF ),
pRefFmt(0),
pItemSet( 0 ),
+ nLeftMargin( 0 ),
+ nRightMargin( 0 ),
nFirstLineIndent(0),
+ nTopMargin( 0 ),
+ nBottomMargin( 0 ),
bScriptDependent(false)
{}