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

Stephan Bergmann sbergman at redhat.com
Tue Mar 24 05:17:46 PDT 2015


 filter/source/msfilter/msdffimp.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit bd3a84a985c726f59bbb9562cc823bcca836040d
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Tue Mar 24 13:10:06 2015 +0100

    Unitialized use of mbSkipImages (as found by UBSan)
    
    Change-Id: I787d7b925d12eec7ac8a5a2901004e09cfab114d

diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index e3c35f8..653303d 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -5603,7 +5603,8 @@ SvxMSDffManager::SvxMSDffManager( SvStream& rStCtrl_, const OUString& rBaseURL )
      nSvxMSDffOLEConvFlags( 0 ),
      pSecPropSet( NULL ),
      mnDefaultColor( COL_DEFAULT ),
-     mbTracing( false )
+     mbTracing( false ),
+     mbSkipImages(false)
 {
     SetModel( NULL, 0 );
 }


More information about the Libreoffice-commits mailing list