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

Caolán McNamara caolanm at redhat.com
Mon Mar 19 14:08:16 UTC 2018


 sfx2/source/appl/openuriexternally.cxx |    4 ++++
 1 file changed, 4 insertions(+)

New commits:
commit 72d0f22c0c04eacb3a40bd64df4d4f1b0a42f49f
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Mon Mar 19 10:26:35 2018 +0000

    coverity#1430090 Uninitialized scalar field
    
    Change-Id: I612642fdd09b2427aede1ef7b90b36b7c27682e1
    Reviewed-on: https://gerrit.libreoffice.org/51540
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/sfx2/source/appl/openuriexternally.cxx b/sfx2/source/appl/openuriexternally.cxx
index 7ffa980706bd..bff5534495d6 100644
--- a/sfx2/source/appl/openuriexternally.cxx
+++ b/sfx2/source/appl/openuriexternally.cxx
@@ -39,6 +39,10 @@ private:
     DECL_LINK(onOpenURI, Timer*, void);
 
 public:
+    URITools()
+        : mbHandleSystemShellExecuteException(false)
+    {
+    }
     void openURI(const OUString& sURI, bool bHandleSystemShellExecuteException);
 };
 


More information about the Libreoffice-commits mailing list