lbutils/mkhtemp: use openat_on_eintr

missing EINTR handling fixed

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-04-03 03:06:06 +01:00
parent f055809c17
commit 9dab2ffa29
+1 -1
View File
@@ -676,7 +676,7 @@ mkhtemp_tmpfile_linux(int dirfd,
goto err;
/* create unnamed tmpfile */
tmpfd = openat(dirfd, ".",
tmpfd = openat_on_eintr(dirfd, ".",
O_TMPFILE | O_RDWR | O_CLOEXEC, 0600);
if (tmpfd < 0)