diff options
author | Thomas Danckaert <thomas.danckaert@gmail.com> | 2017-01-26 11:35:50 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-01-31 15:06:19 -0500 |
commit | 59ae241f7189252c72394fae2e2b85ca61b72755 (patch) | |
tree | a2eb3448c63639998c6fd9c8e6bd7b93bc7b7b6e /gnu/packages/patches/xinetd-fix-fd-leak.patch | |
parent | 9b11eee955fe788af45c376fb595c259fc4f9c52 (diff) |
gnu: Add xinetd.
* gnu/packages/web.scm (xinetd): New variable.
* gnu/packages/patches/xinetd-CVE-2013-4342.patch,
gnu/packages/patches/xinetd-fix-fd-leak.patch: New files.
* gnu/local.mk (dist_patch_DATA): Add patches.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu/packages/patches/xinetd-fix-fd-leak.patch')
-rw-r--r-- | gnu/packages/patches/xinetd-fix-fd-leak.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/patches/xinetd-fix-fd-leak.patch b/gnu/packages/patches/xinetd-fix-fd-leak.patch new file mode 100644 index 0000000000..77e4600185 --- /dev/null +++ b/gnu/packages/patches/xinetd-fix-fd-leak.patch @@ -0,0 +1,26 @@ +Fix a file descriptor leak: + +https://github.com/xinetd-org/xinetd/issues/23 + +Patch copied from Debian: + +https://anonscm.debian.org/cgit/collab-maint/xinetd.git/tree/debian/patches/000012-fix_fd_leak + +Patch sent upstream at https://github.com/xinetd-org/xinetd/pull/26. + +diff --git a/xinetd/xgetloadavg.c b/xinetd/xgetloadavg.c +index 5a26214..fe0f872 100644 +--- a/xinetd/xgetloadavg.c ++++ b/xinetd/xgetloadavg.c +@@ -34,7 +34,7 @@ double xgetloadavg(void) + + if( fscanf(fd, "%lf", &ret) != 1 ) { + perror("fscanf"); +- return -1; ++ ret = -1; + } + + fclose(fd); +-- +2.7.4 + |