Bugfix: Don’t leak IPC socket to launched processes

next
Michael Stapelberg 2010-01-23 00:34:29 +01:00
parent fbe8dafe63
commit fde11f9a5c
1 changed files with 2 additions and 0 deletions

View File

@ -229,6 +229,8 @@ int ipc_create_socket(const char *filename) {
return -1;
}
(void)fcntl(sockfd, F_SETFD, FD_CLOEXEC);
struct sockaddr_un addr;
memset(&addr, 0, sizeof(struct sockaddr_un));
addr.sun_family = AF_LOCAL;