[Libreoffice-commits] core.git: oox/source

Caolán McNamara caolanm at redhat.com
Thu Nov 30 09:17:26 UTC 2017


 oox/source/vml/vmlshape.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 690952524ab2a1ee9e00aad17502da75931ffc88
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Nov 30 09:16:38 2017 +0000

    coverity#1424322 Uninitialized scalar field
    
    Change-Id: I4314ed8ecbfaf1435bc22688e9afb7b0b3bcbfd0

diff --git a/oox/source/vml/vmlshape.cxx b/oox/source/vml/vmlshape.cxx
index 8079f5ef179d..ea111d4c93cb 100644
--- a/oox/source/vml/vmlshape.cxx
+++ b/oox/source/vml/vmlshape.cxx
@@ -254,8 +254,10 @@ ClientData::ClientData() :
 {
 }
 
-ShapeModel::ShapeModel() :
-    mbIsSignatureLine(false)
+ShapeModel::ShapeModel()
+    : mbIsSignatureLine(false)
+    , mbSignatureLineShowSignDate(true)
+    , mbSignatureLineCanAddComment(false)
 {
 }
 


More information about the Libreoffice-commits mailing list