summaryrefslogtreecommitdiff
path: root/app-shells/bash/files/bash-5.2_p21-wpointer-to-int.patch
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <mmk@levelnine.at>2024-11-25 20:40:16 +0100
committerConrad Kostecki <conikost@gentoo.org>2024-12-07 00:11:30 +0100
commit92328f4b82f4d1c6c48a6507ee5a81e13cbb660f (patch)
treebce65afe075ce669dd40e63fef8d28c998c777ce /app-shells/bash/files/bash-5.2_p21-wpointer-to-int.patch
parentc269901f08779bf34a13ef138647f9315220b227 (diff)
downloadgentoo-92328f4b82f4d1c6c48a6507ee5a81e13cbb660f.tar.gz
gentoo-92328f4b82f4d1c6c48a6507ee5a81e13cbb660f.tar.bz2
gentoo-92328f4b82f4d1c6c48a6507ee5a81e13cbb660f.zip
app-shells/bash: remove unused patches
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at> Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'app-shells/bash/files/bash-5.2_p21-wpointer-to-int.patch')
-rw-r--r--app-shells/bash/files/bash-5.2_p21-wpointer-to-int.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/app-shells/bash/files/bash-5.2_p21-wpointer-to-int.patch b/app-shells/bash/files/bash-5.2_p21-wpointer-to-int.patch
deleted file mode 100644
index 3d4abbc47f43..000000000000
--- a/app-shells/bash/files/bash-5.2_p21-wpointer-to-int.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-https://lists.gnu.org/archive/html/bug-bash/2023-03/msg00116.html
-https://git.savannah.gnu.org/cgit/bash.git/commit/?h=devel&id=57d4dc15ff35895a1c1248f948f59739ffb99fde
---- lib/sh/random.c
-+++ lib/sh/random.c
-@@ -90,7 +90,7 @@ genseed ()
- u_bits32_t iv;
-
- gettimeofday (&tv, NULL);
-- iv = (u_bits32_t)seedrand; /* let the compiler truncate */
-+ iv = (uintptr_t)seedrand; /* let the compiler truncate */
- iv = tv.tv_sec ^ tv.tv_usec ^ getpid () ^ getppid () ^ current_user.uid ^ iv;
- return (iv);
- }