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

erdemdemirkapi erdemdemirkapi.1995 at gmail.com
Sun May 1 10:19:52 UTC 2016


 vcl/source/app/svmain.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3f8a2f6bfb1fba694b833fe6fa67b2651a579fda
Author: erdemdemirkapi <erdemdemirkapi.1995 at gmail.com>
Date:   Sat Apr 30 14:27:11 2016 +0300

    tdf93563 volatile signal re-enterancy guards
    
    Change-Id: Ic3e8b78d204145e94f7bc56aab60914f4f64f6e9
    Reviewed-on: https://gerrit.libreoffice.org/24515
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Michael Meeks <michael.meeks at collabora.com>

diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx
index 8e0d1ec..39e62315 100644
--- a/vcl/source/app/svmain.cxx
+++ b/vcl/source/app/svmain.cxx
@@ -99,7 +99,7 @@ static bool isInitVCL();
 
 oslSignalAction SAL_CALL VCLExceptionSignal_impl( void* /*pData*/, oslSignalInfo* pInfo)
 {
-    static bool bIn = false;
+    static volatile bool bIn = false;
 
     // if we crash again, bail out immediately
     if ( !bIn )


More information about the Libreoffice-commits mailing list