[Libreoffice-commits] core.git: vcl/source
Stephan Bergmann
sbergman at redhat.com
Wed Feb 28 12:46:41 UTC 2018
vcl/source/app/svapp.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 28401f2971ea344d02f59280435088009cb69f55
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Tue Feb 27 14:42:38 2018 +0100
Let Application::Abort always dump core in debug builds
Change-Id: I788601193f77641d613005a93e73cf184cb0daf0
Reviewed-on: https://gerrit.libreoffice.org/50436
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index ad07f3e644cc..3276eed372d5 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -292,6 +292,9 @@ void Application::Abort( const OUString& rErrorText )
break;
}
}
+#if OSL_DEBUG_LEVEL > 0
+ dumpCore = true;
+#endif
SalAbort( rErrorText, dumpCore );
}
More information about the Libreoffice-commits
mailing list