From 1857a7f57929a3bb4c831199b702059b259b0e3e Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Fri, 15 May 2015 16:19:20 -0700 Subject: Don't use TEMP_FAILURE_RETRY on close in recovery. Bug: http://b/20501816 Change-Id: I35efcd8dcec7a6492ba70602d380d9980cdda31f (cherry picked from commit b47afedb42866e85b76822736d915afd371ef5f0) --- updater/blockimg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'updater') diff --git a/updater/blockimg.c b/updater/blockimg.c index 532e7b8..a0e9aec 100644 --- a/updater/blockimg.c +++ b/updater/blockimg.c @@ -694,7 +694,7 @@ static int WriteStash(const char* base, const char* id, int blocks, uint8_t* buf wsout: if (fd != -1) { - TEMP_FAILURE_RETRY(close(fd)); + close(fd); } if (fn) { @@ -1732,7 +1732,7 @@ pbiudone: if (fsync(params.fd) == -1) { fprintf(stderr, "fsync failed: %s\n", strerror(errno)); } - TEMP_FAILURE_RETRY(close(params.fd)); + close(params.fd); } if (logcmd) { -- cgit v1.1