diff options
author | erdemdemirkapi <erdemdemirkapi.1995@gmail.com> | 2016-04-30 14:27:11 +0300 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2016-05-01 10:19:26 +0000 |
commit | 3f8a2f6bfb1fba694b833fe6fa67b2651a579fda (patch) | |
tree | 819d2a43cfa534f3da1990db0d61793b337fe6df | |
parent | 60fbe5099bb174039a9d9b397477607c9be50e78 (diff) |
tdf93563 volatile signal re-enterancy guards
Change-Id: Ic3e8b78d204145e94f7bc56aab60914f4f64f6e9
Reviewed-on: https://gerrit.libreoffice.org/24515
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
-rw-r--r-- | vcl/source/app/svmain.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/app/svmain.cxx b/vcl/source/app/svmain.cxx index 8e0d1ec35497..39e62315c24b 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 ) |