diff options
| author | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-31 07:49:49 +0000 |
|---|---|---|
| committer | Woodpecker CI <emmett1.2miligrams@protonmail.com> | 2026-05-31 07:49:49 +0000 |
| commit | fbb9f881ad75057c6dc933135a0ddad058a341c5 (patch) | |
| tree | c6a73e607d565b7023c731a8efc9f800d4cbabcd /readline/readline-8.2-upstream_fix-1.patch | |
| parent | 62d653065b680fe99da6e5660258bf647c3aed12 (diff) | |
| download | alicelinux-fbb9f881ad75057c6dc933135a0ddad058a341c5.tar.gz alicelinux-fbb9f881ad75057c6dc933135a0ddad058a341c5.zip | |
Woodpecker CI a62bd976bf0daeea5256573f29cbebb0bf81d746 [SKIP CI]
Diffstat (limited to 'readline/readline-8.2-upstream_fix-1.patch')
| -rw-r--r-- | readline/readline-8.2-upstream_fix-1.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/readline/readline-8.2-upstream_fix-1.patch b/readline/readline-8.2-upstream_fix-1.patch deleted file mode 100644 index 86544f69..00000000 --- a/readline/readline-8.2-upstream_fix-1.patch +++ /dev/null @@ -1,31 +0,0 @@ -Submitted By: Bruce Dubbs <bdubbs@linuxfromscratch.org> -Date: 2021-10-12 -Initial Package Version: 8.2 -Upstream Status: Applied -Origin: Upstream release repository - Starting a readline applications with an invalid locale - specification for LC_ALL/LANG/LC_CTYPE can cause the shell - to crash. - -diff -Naur readline-8.2-orig/nls.c readline-8.2/nls.c ---- readline-8.2-orig/nls.c 2022-08-15 08:38:51.000000000 -0500 -+++ readline-8.2/nls.c 2022-10-12 19:51:35.881738300 -0500 -@@ -141,6 +141,10 @@ - if (lspec == 0) - lspec = ""; - ret = setlocale (LC_CTYPE, lspec); /* ok, since it does not change locale */ -+ if (ret == 0 || *ret == 0) -+ ret = setlocale (LC_CTYPE, (char *)NULL); -+ if (ret == 0 || *ret == 0) -+ ret = RL_DEFAULT_LOCALE; - #else - ret = (lspec == 0 || *lspec == 0) ? RL_DEFAULT_LOCALE : lspec; - #endif -diff -Naur readline-8.2-orig/patchlevel readline-8.2/patchlevel ---- readline-8.2-orig/patchlevel 2020-05-21 13:22:40.000000000 -0500 -+++ readline-8.2/patchlevel 2022-10-12 19:51:35.881738300 -0500 -@@ -1,3 +1,3 @@ - # Do not edit -- exists only for use by patch - --0 -+1 |