aboutsummaryrefslogtreecommitdiff
path: root/src/client/ios
diff options
context:
space:
mode:
authorJoshua Peraza <jperaza@chromium.org>2018-07-09 10:39:41 -0700
committerJoshua Peraza <jperaza@chromium.org>2018-07-09 19:25:39 +0000
commitc79e349bec45c7d02741865f8e54e91ede5871bf (patch)
treeea5253091c98e020dd7eddb5412d9633957fd87d /src/client/ios
parentUse hash_map and hash_set from __gnu_cxx (diff)
downloadbreakpad-c79e349bec45c7d02741865f8e54e91ede5871bf.tar.xz
ios: Fix build of exception_handler_no_mach
Change-Id: I2a9f85e78f6d3189f018824ad98e39af30d2ecf8 Reviewed-on: https://chromium-review.googlesource.com/1129465 Reviewed-by: Ivan Penkov <ivanpe@chromium.org>
Diffstat (limited to 'src/client/ios')
-rw-r--r--src/client/ios/exception_handler_no_mach.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/ios/exception_handler_no_mach.cc b/src/client/ios/exception_handler_no_mach.cc
index aa8489d7..7fcf2d83 100644
--- a/src/client/ios/exception_handler_no_mach.cc
+++ b/src/client/ios/exception_handler_no_mach.cc
@@ -198,7 +198,7 @@ void ExceptionHandler::SignalHandler(int sig, siginfo_t* info, void* uc) {
bool ExceptionHandler::InstallHandlers() {
// If a handler is already installed, something is really wrong.
- if (gProtectedData.handler != NULL) {
+ if (gProtectedData.handler != NULL)
return false;
for (int i = 0; i < kNumHandledSignals; ++i) {
struct sigaction sa;