aboutsummaryrefslogtreecommitdiff
path: root/src/crashhandler.cpp
diff options
context:
space:
mode:
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;
}