diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 18:55:17 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 18:55:17 -0600 |
commit | 943f28299e073c28657c5c0eb8bbdc9a33417ce0 (patch) | |
tree | 10c8ff57fb23193f74cac103697bcc0d2afcfb9c /lotuswordpro | |
parent | f7f3c49f4852054c8db1ba141524eb936cbe5efa (diff) |
coverity#738705: Unitialized scalar field
Change-Id: I7a85167f1a2b54913ac8168a6b677a7012eb7aef
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpdrawobj.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpdrawobj.cxx b/lotuswordpro/source/filter/lwpdrawobj.cxx index 1f13b8e90337..a50ec14accfe 100644 --- a/lotuswordpro/source/filter/lwpdrawobj.cxx +++ b/lotuswordpro/source/filter/lwpdrawobj.cxx @@ -645,7 +645,8 @@ XFFrame* LwpDrawPolygon::CreateStandardDrawObj(const OUString& rStyleName) * @param pStream The memory stream which contains the lwp-sdw draw objects */ LwpDrawRectangle::LwpDrawRectangle(SvStream * pStream, DrawingOffsetAndScale* pTransData) -: LwpDrawObj(pStream, pTransData) + : LwpDrawObj(pStream, pTransData) + , m_aVector{} { } |