summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/butler.cc3
-rw-r--r--libs/ardour/rdff.c2
2 files changed, 0 insertions, 5 deletions
diff --git a/libs/ardour/butler.cc b/libs/ardour/butler.cc
index 119f01fc6b..db1b316368 100644
--- a/libs/ardour/butler.cc
+++ b/libs/ardour/butler.cc
@@ -110,9 +110,6 @@ Butler::start_thread()
return -1;
}
- fcntl(request_pipe[0], F_SETFD, fcntl(request_pipe[0], F_GETFD) | FD_CLOEXEC);
- fcntl(request_pipe[1], F_SETFD, fcntl(request_pipe[1], F_GETFD) | FD_CLOEXEC);
-
//pthread_detach (thread);
return 0;
diff --git a/libs/ardour/rdff.c b/libs/ardour/rdff.c
index 9dbb6ddae1..ca8e1abf1f 100644
--- a/libs/ardour/rdff.c
+++ b/libs/ardour/rdff.c
@@ -74,8 +74,6 @@ rdff_open(const char* path, bool write)
}
}
- fcntl(fileno(fd), F_SETFD, fcntl(fileno(fd), F_GETFD) | FD_CLOEXEC);
-
RDFF ret = (RDFF)malloc(sizeof(struct _RDFF));
ret->fd = fd;
ret->size = size;