mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 08:03:04 +01:00
Fixed bug #8110 : Firebird 5 crash On Android API level 34
This commit is contained in:
parent
0f4cd5d779
commit
ecaed6045f
@ -363,7 +363,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))
|
||||
;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user