diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-07 21:24:04 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-08 12:30:15 -0600 |
commit | bfcd369f9b9072494b893dbdeee09f5e4341deac (patch) | |
tree | 2cfbff53c9db1edc8d8920497d1068aa2b39bdca /include | |
parent | 771b9d2718f28beedbc1a913e8965cdd1fc75a88 (diff) |
coverity#707774: Uninitialized scalar value
Change-Id: Icba50e53a162276b90c1602d22f28fa3ef42f05d
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/msdffimp.hxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include/filter/msfilter/msdffimp.hxx b/include/filter/msfilter/msdffimp.hxx index c2bf0391c26b..0460830b1cfa 100644 --- a/include/filter/msfilter/msdffimp.hxx +++ b/include/filter/msfilter/msdffimp.hxx @@ -176,8 +176,19 @@ struct SvxMSDffConnectorRule SdrObject* pBObj; ///< pPtr of object (corresponding to shape B) SdrObject* pCObj; ///< pPtr of connector object - SvxMSDffConnectorRule() : nSpFlagsA( 0 ), nSpFlagsB( 0 ), pAObj( NULL ), - pBObj( NULL ), pCObj( NULL ) {}; + SvxMSDffConnectorRule() + : nRuleId(0) + , nShapeA(0) + , nShapeB(0) + , nShapeC(0) + , ncptiA(0) + , ncptiB(0) + , nSpFlagsA( 0 ) + , nSpFlagsB( 0 ) + , pAObj( NULL ) + , pBObj( NULL ) + , pCObj( NULL ) + {}; friend SvStream& ReadSvxMSDffConnectorRule( SvStream& rIn, SvxMSDffConnectorRule& rAtom ); }; |