Really don't use TEMP_FAILURE_RETRY with close in recovery.
I missed one last time.
Bug: http://b/20501816
Change-Id: I9896ee2704237d61ee169f898680761e946e0a56
(cherry picked from commit b3ac676192
)
This commit is contained in:
parent
92eea1bc41
commit
b5dabd25e1
1 changed files with 1 additions and 1 deletions
|
@ -616,7 +616,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