commit | b3ac676192a093c561b7f15064cbd67733407b12 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Thu May 28 23:06:17 2015 -0700 |
committer | Elliott Hughes <enh@google.com> | Thu May 28 23:06:17 2015 -0700 |
tree | 9291389abf9fe3ffb5359b36f8ae3fef8a946c28 | |
parent | f272b9e777de92f96b9298889bf145e40c5db2e3 [diff] |
Really don't use TEMP_FAILURE_RETRY with close in recovery. I missed one last time. Bug: http://b/20501816 Change-Id: I9896ee2704237d61ee169f898680761e946e0a56
diff --git a/updater/blockimg.c b/updater/blockimg.c index ce63600..54f76ff 100644 --- a/updater/blockimg.c +++ b/updater/blockimg.c
@@ -677,7 +677,7 @@ lsout: if (fd != -1) { - TEMP_FAILURE_RETRY(close(fd)); + close(fd); } if (fn) {