util/nvmutil: re-add EINTR loop check on rw

accidentally removed it during re-factor

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-03-10 16:17:33 +00:00
parent f0240df229
commit 1403bdf1cc
+3
View File
@@ -1445,6 +1445,9 @@ rw_file_exact(int fd, uint8_t *mem, size_t len,
continue;
}
if (rval < 0 && errno == EINTR)
continue;
set_err_if_unset(EIO);
return -1;
}