aboutsummaryrefslogtreecommitdiff
path: root/src/crashhandler.cpp
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2020-01-04 22:00:25 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2020-01-04 23:03:40 +0200
commit93c92ce9791bb70cf3ff6af71e2f19e9b68d7584 (patch)
treefabbecb5a6712b400754ea1e5f7c892909d6e65c /src/crashhandler.cpp
parentFix configuration not being read unless explicitly specified (diff)
downloadsmolbote-93c92ce9791bb70cf3ff6af71e2f19e9b68d7584.tar.xz
Disable plugins as broken
- Fix several Qt deprecated warnings
Diffstat (limited to 'src/crashhandler.cpp')
-rw-r--r--src/crashhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crashhandler.cpp b/src/crashhandler.cpp
index 0c2fec7..ed9298f 100644
--- a/src/crashhandler.cpp
+++ b/src/crashhandler.cpp
@@ -50,7 +50,7 @@ bool CrashHandler::install_handler(CrashHandler::Context &ctx)
google_breakpad::MinidumpDescriptor descriptor(ctx.dumppath.c_str());
// minidump descriptor, filter callback, minidump callback, callback_context, install handler, server_fd
- auto *eh = new google_breakpad::ExceptionHandler(descriptor, nullptr, minidumpCb, &ctx, true, -1);
+ new google_breakpad::ExceptionHandler(descriptor, nullptr, minidumpCb, &ctx, true, -1);
return true;
}