Skip to content

Commit

Permalink
Backport fix for #8110 : Firebird 5 crash On Android API level 34
Browse files Browse the repository at this point in the history
  • Loading branch information
hvlad committed May 29, 2024
1 parent 614801f commit 3faf63b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/os/posix/os_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ void setCloseOnExec(int fd)
{
if (fd >= 0)
{
while (fcntl(fd, F_SETFD, O_CLOEXEC) < 0 && SYSCALL_INTERRUPTED(errno))
while (fcntl(fd, F_SETFD, FD_CLOEXEC) < 0 && SYSCALL_INTERRUPTED(errno))
;
}
}
Expand Down

0 comments on commit 3faf63b

Please sign in to comment.