diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-06-18 23:45:22 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-06-18 23:45:22 +0000 |
commit | 4aa412a17d51ef9c76ea9cf42b1edca0a7f20d95 (patch) | |
tree | d1ce30b040856f5c9e1997db1d68734141574156 /sys-freebsd/freebsd-lib/files | |
parent | Replace IUSE=sse2check with IUSE=sse2 and add REQUIRED_USE=sse2 by Matt Turne... (diff) | |
download | gentoo-2-4aa412a17d51ef9c76ea9cf42b1edca0a7f20d95.tar.gz gentoo-2-4aa412a17d51ef9c76ea9cf42b1edca0a7f20d95.tar.bz2 gentoo-2-4aa412a17d51ef9c76ea9cf42b1edca0a7f20d95.zip |
remove old
(Portage version: 2.2.0_alpha180/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'sys-freebsd/freebsd-lib/files')
-rw-r--r-- | sys-freebsd/freebsd-lib/files/freebsd-lib-7.0-CVE-2008-1391.patch | 11 | ||||
-rw-r--r-- | sys-freebsd/freebsd-lib/files/freebsd-lib-7.2-rtldnoload.patch | 30 |
2 files changed, 0 insertions, 41 deletions
diff --git a/sys-freebsd/freebsd-lib/files/freebsd-lib-7.0-CVE-2008-1391.patch b/sys-freebsd/freebsd-lib/files/freebsd-lib-7.0-CVE-2008-1391.patch deleted file mode 100644 index 2b8d401412fc..000000000000 --- a/sys-freebsd/freebsd-lib/files/freebsd-lib-7.0-CVE-2008-1391.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/libc/stdlib/strfmon.c 2008/04/22 13:23:34 -+++ lib/libc/stdlib/strfmon.c 2008/04/24 07:49:00 -@@ -65,6 +65,8 @@ - #define GET_NUMBER(VAR) do { \ - VAR = 0; \ - while (isdigit((unsigned char)*fmt)) { \ -+ if (VAR > INT_MAX / 10) \ -+ goto e2big_error; \ - VAR *= 10; \ - VAR += *fmt - '0'; \ - if (VAR < 0) \ diff --git a/sys-freebsd/freebsd-lib/files/freebsd-lib-7.2-rtldnoload.patch b/sys-freebsd/freebsd-lib/files/freebsd-lib-7.2-rtldnoload.patch deleted file mode 100644 index 77bbe2ed350d..000000000000 --- a/sys-freebsd/freebsd-lib/files/freebsd-lib-7.2-rtldnoload.patch +++ /dev/null @@ -1,30 +0,0 @@ -Backported from 8.0. -Even if RTLD_NOLOAD is not standard, dev-libs/nss expects it. -Since it has made it to 8.0 we can afford backporting it. - ---- include/dlfcn.h.old 2010-01-10 18:42:04 +0100 -+++ include/dlfcn.h 2010-01-10 18:42:19 +0100 -@@ -47,6 +47,7 @@ - #define RTLD_GLOBAL 0x100 /* Make symbols globally available. */ - #define RTLD_LOCAL 0 /* Opposite of RTLD_GLOBAL, and the default. */ - #define RTLD_TRACE 0x200 /* Trace loaded objects and exit. */ -+#define RTLD_NOLOAD 0x02000 /* Do not load if not already loaded. */ - - /* - * Request arguments for dlinfo(). ---- lib/libc/gen/dlopen.3.old 2010-01-10 18:43:15 +0100 -+++ lib/libc/gen/dlopen.3 2010-01-10 18:45:27 +0100 -@@ -141,6 +141,13 @@ - With this flag - .Fn dlopen - will return to the caller only in the case of error. -+.It Dv RTLD_NOLOAD -+Only return valid handle for the object if it is already loaded in -+the process address space, otherwise -+.Dv NULL -+is returned. -+Other mode flags may be specified, which will be applied for promotion -+for the found object. - .El - .Pp - If |