| Index: runtime/bin/crypto_linux.cc
|
| diff --git a/runtime/bin/crypto_linux.cc b/runtime/bin/crypto_linux.cc
|
| index c2e4ccd1c3889637b7030c0c6ce4368b63b91a08..b61810133698f8f7a793e392f402e5a2ae228783 100644
|
| --- a/runtime/bin/crypto_linux.cc
|
| +++ b/runtime/bin/crypto_linux.cc
|
| @@ -17,8 +17,8 @@ namespace bin {
|
|
|
| bool Crypto::GetRandomBytes(intptr_t count, uint8_t* buffer) {
|
| ThreadSignalBlocker signal_blocker(SIGPROF);
|
| - intptr_t fd = TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(
|
| - open("/dev/urandom", O_RDONLY));
|
| + intptr_t fd =
|
| + TEMP_FAILURE_RETRY_NO_SIGNAL_BLOCKER(open("/dev/urandom", O_RDONLY));
|
| if (fd < 0) {
|
| return false;
|
| }
|
|
|