From 4aa412a17d51ef9c76ea9cf42b1edca0a7f20d95 Mon Sep 17 00:00:00 2001 From: Alexis Ballier Date: Tue, 18 Jun 2013 23:45:22 +0000 Subject: remove old (Portage version: 2.2.0_alpha180/cvs/Linux x86_64, signed Manifest commit with key 160F534A) --- .../files/freebsd-lib-7.0-CVE-2008-1391.patch | 11 -------- .../files/freebsd-lib-7.2-rtldnoload.patch | 30 ---------------------- 2 files changed, 41 deletions(-) delete mode 100644 sys-freebsd/freebsd-lib/files/freebsd-lib-7.0-CVE-2008-1391.patch delete mode 100644 sys-freebsd/freebsd-lib/files/freebsd-lib-7.2-rtldnoload.patch (limited to 'sys-freebsd/freebsd-lib/files') 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 -- cgit v1.2.3-65-gdbad