mirror of https://gitee.com/openkylin/libvirt.git
virRandomBytes: Prefer saferead over plain read
Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
parent
c3320d6518
commit
a6be5a4ce1
|
@ -182,9 +182,7 @@ virRandomBytes(unsigned char *buf,
|
|||
while (buflen > 0) {
|
||||
ssize_t n;
|
||||
|
||||
if ((n = read(fd, buf, buflen)) <= 0) {
|
||||
if (errno == EINTR)
|
||||
continue;
|
||||
if ((n = saferead(fd, buf, buflen)) <= 0) {
|
||||
VIR_FORCE_CLOSE(fd);
|
||||
return n < 0 ? -errno : -ENODATA;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue