commit | 4351c9a08be1d95607e2e5d431692198d60b7d94 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Sat May 16 02:42:30 2015 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Sat May 16 02:42:31 2015 +0000 |
tree | 7df6793e5a2a600eaedef4646031961e0bbaa252 | |
parent | 5a6bfca1638760b87cf64c5ffb48ff3557cc0563 [diff] | |
parent | a623108ef40143e04e3e765a057981a439ff3cd2 [diff] |
Merge "Don't use TEMP_FAILURE_RETRY on close in vold." into mnc-dev
diff --git a/Utils.cpp b/Utils.cpp index f45907a..0b8ccfd 100644 --- a/Utils.cpp +++ b/Utils.cpp
@@ -328,7 +328,7 @@ out.append(buf, n); bytes -= n; } - TEMP_FAILURE_RETRY(close(fd)); + close(fd); if (bytes == 0) { return OK;