diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 11:26:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-04 12:14:26 +0100 |
commit | 73717981879dc03d42a045b870ac4d4fba8b7275 (patch) | |
tree | d6d0d1e32abc3f05b2772c56cf361602c1fc5b69 /sw | |
parent | 7fb80c06655bdafefe3911cdc7821f19e0e8f35a (diff) |
coverity#708464 Uninitialized scalar field
Change-Id: Icf882b97fec554bb25063f092d628c140dae60be
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/text/txtfly.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/core/text/txtfly.cxx b/sw/source/core/text/txtfly.cxx index ec16ea3a1060..ab556afda97a 100644 --- a/sw/source/core/text/txtfly.cxx +++ b/sw/source/core/text/txtfly.cxx @@ -379,6 +379,7 @@ void SwTxtFly::CtorInitTxtFly( const SwTxtFrm *pFrm ) bOn = pPage->GetSortedObjs() != 0; bTopRule = true; nMinBottom = 0; + nNextTop = 0; nIndex = ULONG_MAX; } |