diff options
author | Elliott Hughes <enh@google.com> | 2015-05-16 03:08:54 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-05-16 03:08:55 +0200 |
commit | cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8 (patch) | |
tree | 2b828269e9cfd9bd6dba137bd5fe72529f8ca175 /updater | |
parent | Merge "init sets the default PATH itself, better." (diff) | |
parent | Don't use TEMP_FAILURE_RETRY on close in recovery. (diff) | |
download | android_bootable_recovery-cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8.tar android_bootable_recovery-cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8.tar.gz android_bootable_recovery-cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8.tar.bz2 android_bootable_recovery-cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8.tar.lz android_bootable_recovery-cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8.tar.xz android_bootable_recovery-cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8.tar.zst android_bootable_recovery-cd7d9d8374f45c7e2eb14d8dbabf3cf7c221a5b8.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/blockimg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/blockimg.c b/updater/blockimg.c index 532e7b845..a0e9aec6a 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) { |