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

Caolán McNamara caolanm at redhat.com
Fri Apr 11 01:37:25 PDT 2014


 svx/source/svdraw/svdotext.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 46f0dd562ce6fc22b311649c170398cf8dee4829
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Thu Apr 10 21:09:19 2014 +0100

    coverity#708383 Uninitialized scalar field
    
    Change-Id: I58f092c121a6456e004e310fbb63eba6ef0c25cd

diff --git a/svx/source/svdraw/svdotext.cxx b/svx/source/svdraw/svdotext.cxx
index d3e0330..acfbe91 100644
--- a/svx/source/svdraw/svdotext.cxx
+++ b/svx/source/svdraw/svdotext.cxx
@@ -91,6 +91,7 @@ SdrTextObj::SdrTextObj()
 {
     bTextSizeDirty=false;
     bTextFrame=false;
+    bPortionInfoChecked=false;
     bNoShear=false;
     bNoRotate=false;
     bNoMirror=false;
@@ -116,6 +117,7 @@ SdrTextObj::SdrTextObj(const Rectangle& rNewRect)
 {
     bTextSizeDirty=false;
     bTextFrame=false;
+    bPortionInfoChecked=false;
     bNoShear=false;
     bNoRotate=false;
     bNoMirror=false;


More information about the Libreoffice-commits mailing list