diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-05-03 19:51:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-05-04 11:09:44 +0200 |
commit | 61dbc8791b8d3afa524bfe89ebc99eca3a5c2030 (patch) | |
tree | bae000a50657bd95c256295dc677c62efd3156a3 /sw | |
parent | 61b652a1ebe72986d606b68b32387ccf0594d5c4 (diff) |
cid#1478174 Uninitialized scalar field
Change-Id: Ib17e55b600012ef5f6a26d01e9d54aa7be9c590d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115052
Tested-by: Jenkins
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/text/porfly.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sw/source/core/text/porfly.cxx b/sw/source/core/text/porfly.cxx index 422e2ef36ee3..34edc3082b71 100644 --- a/sw/source/core/text/porfly.cxx +++ b/sw/source/core/text/porfly.cxx @@ -269,6 +269,7 @@ void sw::DrawFlyCntPortion::Paint(const SwTextPaintInfo&) const */ SwFlyCntPortion::SwFlyCntPortion() : m_bMax(false) + , m_bDeleted(false) , m_eAlign(sw::LineAlign::NONE) { mnLineLength = TextFrameIndex(1); |