summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hinfo.cxx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-07-16 03:17:29 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-07-16 04:07:21 +0200
commitc7fe625c8d41f648f89765abc40bb7b8fd4ed12a (patch)
tree38cf7233fe9a647fab44e33dc6cd78096708f587 /hwpfilter/source/hinfo.cxx
parentf054b9187155bc32b7d06808aea87127cb0a3a4f (diff)
don't use memset on structure with std::shared_ptr member
Change-Id: Ie6033b9820435bb6a45aa70f9a48115000571e0f Reviewed-on: https://gerrit.libreoffice.org/40004 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'hwpfilter/source/hinfo.cxx')
-rw-r--r--hwpfilter/source/hinfo.cxx25
1 files changed, 25 insertions, 0 deletions
diff --git a/hwpfilter/source/hinfo.cxx b/hwpfilter/source/hinfo.cxx
index 3d262b5c7d1e..3ad38721404e 100644
--- a/hwpfilter/source/hinfo.cxx
+++ b/hwpfilter/source/hinfo.cxx
@@ -192,6 +192,31 @@ bool HWPSummary::Read(HWPFile & hwpf)
return (!hwpf.State());
}
+ParaShape::ParaShape():
+ index(0),
+ left_margin(0),
+ right_margin(0),
+ indent(0),
+ lspacing(0),
+ pspacing_prev(0),
+ pspacing_next(0),
+ condense(0),
+ arrange_type(0),
+ shade(0),
+ outline(0),
+ outline_continue(0),
+ pagebreak(0)
+{
+ coldef.ncols = 0;
+ coldef.separator = 0;
+ coldef.spacing = 0;
+ coldef.columnlen = 0;
+ coldef.columnlen0 = 0;
+ reserved[0] = 0;
+ reserved[1] = 0;
+ reserved[0] = 0;
+ reserved[1] = 0;
+}
void ParaShape::Read(HWPFile & hwpf)
{