mirror of
https://github.com/chromium/crashpad.git
synced 2024-12-27 23:41:02 +08:00
linux: initialize crash_loop_before_time member
Change-Id: I8910d0700056232afb82afc4ef1463212053f7e2 Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/1782737 Reviewed-by: Mark Mentovai <mark@chromium.org> Commit-Queue: Joshua Peraza <jperaza@chromium.org>
This commit is contained in:
parent
cd92fba233
commit
e1e55e2246
@ -17,7 +17,12 @@
|
||||
namespace crashpad {
|
||||
|
||||
ExceptionHandlerProtocol::ClientInformation::ClientInformation()
|
||||
: exception_information_address(0), sanitization_information_address(0) {}
|
||||
: exception_information_address(0),
|
||||
sanitization_information_address(0)
|
||||
#if defined(OS_LINUX)
|
||||
, crash_loop_before_time(0)
|
||||
#endif // OS_LINUX
|
||||
{}
|
||||
|
||||
ExceptionHandlerProtocol::ClientToServerMessage::ClientToServerMessage()
|
||||
: version(kVersion),
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include <sys/types.h>
|
||||
|
||||
#include "base/macros.h"
|
||||
#include "build/build_config.h"
|
||||
#include "util/file/file_io.h"
|
||||
#include "util/misc/address_types.h"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user