diff options
author | Elliott Hughes <enh@google.com> | 2015-05-29 08:06:17 +0200 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-05-29 20:03:44 +0200 |
commit | b5dabd25e1d04ce134837b49fbef889e511d4d35 (patch) | |
tree | 9eba9bfccd75ce69b24f397f5d8eb85ac235a37c /updater | |
parent | Handle BLKDISCARD failures (diff) | |
download | android_bootable_recovery-b5dabd25e1d04ce134837b49fbef889e511d4d35.tar android_bootable_recovery-b5dabd25e1d04ce134837b49fbef889e511d4d35.tar.gz android_bootable_recovery-b5dabd25e1d04ce134837b49fbef889e511d4d35.tar.bz2 android_bootable_recovery-b5dabd25e1d04ce134837b49fbef889e511d4d35.tar.lz android_bootable_recovery-b5dabd25e1d04ce134837b49fbef889e511d4d35.tar.xz android_bootable_recovery-b5dabd25e1d04ce134837b49fbef889e511d4d35.tar.zst android_bootable_recovery-b5dabd25e1d04ce134837b49fbef889e511d4d35.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/blockimg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/updater/blockimg.c b/updater/blockimg.c index 0e2ba4441..7b8721dbf 100644 --- a/updater/blockimg.c +++ b/updater/blockimg.c @@ -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) { |