commit | c79e349bec45c7d02741865f8e54e91ede5871bf | [log] [tgz] |
---|---|---|
author | Joshua Peraza <jperaza@chromium.org> | Mon Jul 09 10:39:41 2018 -0700 |
committer | Joshua Peraza <jperaza@chromium.org> | Mon Jul 09 19:25:39 2018 +0000 |
tree | ea5253091c98e020dd7eddb5412d9633957fd87d | |
parent | 5dc88243a6d8608ca0096ccd44614ab3742702f2 [diff] |
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>
diff --git a/src/client/ios/exception_handler_no_mach.cc b/src/client/ios/exception_handler_no_mach.cc index aa8489d..7fcf2d8 100644 --- a/src/client/ios/exception_handler_no_mach.cc +++ b/src/client/ios/exception_handler_no_mach.cc
@@ -198,7 +198,7 @@ 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;