Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
systemd-mini.1059
0001-replace-more-dup-by-F_DUPFD_CLOEXEC.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 0001-replace-more-dup-by-F_DUPFD_CLOEXEC.patch of Package systemd-mini.1059
From ead349509e325aad720bb0349521a9e56e2ac7c0 Mon Sep 17 00:00:00 2001 From: Lennart Poettering <lennart@poettering.net> Date: Tue, 13 May 2014 16:40:53 +0200 Subject: [PATCH] replace more dup() by F_DUPFD_CLOEXEC --- src/login/inhibit.c | 2 +- src/shared/install.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git src/login/inhibit.c src/login/inhibit.c index 48c2ec4..ae3afdf 100644 --- src/login/inhibit.c +++ src/login/inhibit.c @@ -64,7 +64,7 @@ static int inhibit(sd_bus *bus, sd_bus_error *error) { if (r < 0) return r; - r = dup(fd); + r = fcntl(fd, F_DUPFD_CLOEXEC, 3); if (r < 0) return -errno; diff --git src/shared/install.c src/shared/install.c index acfba25..9ce9403 100644 --- src/shared/install.c +++ src/shared/install.c @@ -332,7 +332,7 @@ static int remove_marked_symlinks( int q, cfd; deleted = false; - cfd = dup(fd); + cfd = fcntl(fd, F_DUPFD_CLOEXEC, 3); if (cfd < 0) { r = -errno; break; -- 1.7.9.2
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor