[Libreoffice-commits] core.git: Branch 'distro/cib/libreoffice-6-1' - desktop/source
Thorsten Behrens (via logerrit)
logerrit at kemper.freedesktop.org
Tue Apr 21 23:13:28 UTC 2020
desktop/source/app/crashreport.cxx | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
New commits:
commit 63e2f183336babb5956730e5a9b0684951afdfa4
Author: Thorsten Behrens <Thorsten.Behrens at CIB.de>
AuthorDate: Wed Apr 22 01:10:13 2020 +0200
Commit: Thorsten Behrens <Thorsten.Behrens at CIB.de>
CommitDate: Wed Apr 22 01:10:13 2020 +0200
Get local, no-upload crash dumps working again
With this, CrashDumpEnable=true and CrashDumpUrl missing will
create local dmp files, but never upload/present GUI for it.
Change-Id: I0bae48a0accace01dc8507cccb2a7b02a4de61a0
diff --git a/desktop/source/app/crashreport.cxx b/desktop/source/app/crashreport.cxx
index c90a584a4163..c121b4fb8069 100644
--- a/desktop/source/app/crashreport.cxx
+++ b/desktop/source/app/crashreport.cxx
@@ -119,7 +119,10 @@ void CrashReporter::writeCommonInfo()
rtl::Bootstrap::get("CrashDumpUrl", url);
if (url.isEmpty())
{
- // no url in config, bail out
+ // no url in config, bail out, but still set proper crash
+ // directory for local dump generation (incase CrashDumpEnable
+ // is on
+ updateMinidumpLocation();
mbInit = false;
return;
}
More information about the Libreoffice-commits
mailing list