Chromium Code Reviews| Index: runtime/bin/crypto_macos.cc |
| =================================================================== |
| --- runtime/bin/crypto_macos.cc (revision 40623) |
| +++ runtime/bin/crypto_macos.cc (working copy) |
| @@ -20,7 +20,9 @@ |
| ThreadSignalBlocker signal_blocker(SIGPROF); |
| intptr_t fd = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER( |
| open("/dev/urandom", O_RDONLY)); |
| - if (fd < 0) return false; |
| + if (fd < 0) { |
| + return false; |
| + } |
| intptr_t bytes_read = 0; |
| do { |
| int res = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER( |