am 1441a965
: Merge "Really don\'t use TEMP_FAILURE_RETRY with close in recovery."
* commit '1441a9654feee7e32ec6b39b1992c27635feb50f': Really don't use TEMP_FAILURE_RETRY with close in recovery.
This commit is contained in:
commit
5944bcd8eb
1 changed files with 1 additions and 1 deletions
|
@ -677,7 +677,7 @@ static int LoadStash(const char* base, const char* id, int verify, int* blocks,
|
|||
|
||||
lsout:
|
||||
if (fd != -1) {
|
||||
TEMP_FAILURE_RETRY(close(fd));
|
||||
close(fd);
|
||||
}
|
||||
|
||||
if (fn) {
|
||||
|
|
Loading…
Reference in a new issue