Merge "Utils: correctly handle read() errors in ReadRandomBytes()"

am: a2bd436594

Change-Id: If33693132dd4954135070c2681053a49f885ed0e
This commit is contained in:
Eric Biggers 2019-01-22 10:33:21 -08:00 committed by android-build-merger
commit 038a274e8a

View file

@ -377,7 +377,7 @@ status_t ReadRandomBytes(size_t bytes, char* buf) {
return -errno;
}
size_t n;
ssize_t n;
while ((n = TEMP_FAILURE_RETRY(read(fd, &buf[0], bytes))) > 0) {
bytes -= n;
buf += n;