summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/launcher/qcopbridge.cpp2
-rw-r--r--core/launcher/transferserver.cpp3
2 files changed, 5 insertions, 0 deletions
diff --git a/core/launcher/qcopbridge.cpp b/core/launcher/qcopbridge.cpp
index e339dc7..64eb096 100644
--- a/core/launcher/qcopbridge.cpp
+++ b/core/launcher/qcopbridge.cpp
@@ -47,2 +47,3 @@ using namespace Opie::Core;
#include <unistd.h>
+#include <fcntl.h>
#include <sys/types.h>
@@ -65,2 +66,3 @@ QCopBridge::QCopBridge( Q_UINT16 port, QObject *parent,
else {
+ ::fcntl( socket(), F_SETFD, FD_CLOEXEC );
#ifndef QT_NO_COP
diff --git a/core/launcher/transferserver.cpp b/core/launcher/transferserver.cpp
index 2b2e435..a219c0f 100644
--- a/core/launcher/transferserver.cpp
+++ b/core/launcher/transferserver.cpp
@@ -41,2 +41,3 @@ using namespace Opie::Core;
#include <unistd.h>
+#include <fcntl.h>
#include <stdlib.h>
@@ -58,2 +59,4 @@ TransferServer::TransferServer( Q_UINT16 port, QObject *parent,
owarn << "Failed to bind to port " << port << "" << oendl;
+ else
+ ::fcntl( socket(), F_SETFD, FD_CLOEXEC );
}