diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2023-12-25 21:11:18 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2023-12-25 21:11:32 +0100 |
commit | f47490979e61f9b1da27f671e28ac7df6677d355 (patch) | |
tree | 49fd77c82dd512ba6097bde4036e941c55730ff0 | |
parent | Disable valgrind tests (diff) | |
download | glibc-patches-f47490979e61f9b1da27f671e28ac7df6677d355.tar.gz glibc-patches-f47490979e61f9b1da27f671e28ac7df6677d355.tar.bz2 glibc-patches-f47490979e61f9b1da27f671e28ac7df6677d355.zip |
Drop patch that is now in master
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
-rw-r--r-- | 9999/0010-disable-tunables-in-AT_SECURE.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/9999/0010-disable-tunables-in-AT_SECURE.patch b/9999/0010-disable-tunables-in-AT_SECURE.patch deleted file mode 100644 index 4307c89..0000000 --- a/9999/0010-disable-tunables-in-AT_SECURE.patch +++ /dev/null @@ -1,27 +0,0 @@ -From 5d1686416ab766f3dd0780ab730650c4c0f76ca9 Mon Sep 17 00:00:00 2001 -From: Gleb Fotengauer-Malinovskiy <glebfm@altlinux.org> -Date: Wed, 20 Sep 2023 05:00:00 +0000 -Subject: [PATCH] elf/dl-tunables.c: avoid processing of tunables in AT_SECURE executables - -Complements: owl-alt-sanitize-env ---- - elf/dl-tunables.c | 3 +++ - 1 files changed, 3 insertions(+), 0 deletions(-) - -diff --git a/elf/dl-tunables.c b/elf/dl-tunables.c -index 62b7332..e5e9093 100644 ---- a/elf/dl-tunables.c -+++ b/elf/dl-tunables.c -@@ -274,6 +274,9 @@ __tunables_init (char **envp) - size_t len = 0; - char **prev_envp = envp; - -+ if (__glibc_unlikely (__libc_enable_secure)) -+ return; -+ - maybe_enable_malloc_check (); - - while ((envp = get_next_env (envp, &envname, &len, &envval, --- -1.7.3.3 - |