summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hstyle.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/hstyle.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/hstyle.cxx')
-rw-r--r--hwpfilter/source/hstyle.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hwpfilter/source/hstyle.cxx b/hwpfilter/source/hstyle.cxx
index 6c29a500d2b5..d43b3c8fc785 100644
--- a/hwpfilter/source/hstyle.cxx
+++ b/hwpfilter/source/hstyle.cxx
@@ -108,7 +108,7 @@ void HWPStyle::SetParaShape(int n, ParaShape * pshapep)
if (pshapep)
DATA[n].pshape = *pshapep;
else
- memset(&DATA[n].pshape, 0, sizeof(ParaShape));
+ DATA[n].pshape = ParaShape();
}
}