summaryrefslogtreecommitdiff
path: root/source/l/readline/readline-8.1-patches/readline81-001
diff options
context:
space:
mode:
authorPatrick J Volkerding <volkerdi@slackware.com>2022-09-26 19:43:54 +0000
committerEric Hameleers <alien@slackware.com>2022-09-27 06:59:45 +0200
commit98175558d7a0dcd6e001ae887a44c05cf7955d63 (patch)
tree234639cf4c451359a2e1378954d53ce601bba068 /source/l/readline/readline-8.1-patches/readline81-001
parentc1abff4356b1c0bde79b73b1c88adec821b09872 (diff)
downloadcurrent-98175558d7a0dcd6e001ae887a44c05cf7955d63.tar.gz
Mon Sep 26 19:43:54 UTC 202220220926194354
a/bash-5.2.000-x86_64-1.txz: Upgraded. ap/vim-9.0.0594-x86_64-1.txz: Upgraded. Fixed stack-based buffer overflow. Thanks to marav for the heads-up. In addition, Mig21 pointed out an issue where the defaults.vim file might need to be edited for some purposes as its contents will override the settings in the system-wide vimrc. Usually this file is replaced whenever vim is upgraded, which in those situations would be inconvenient for the admin. So, I've added support for a file named defaults.vim.custom which (if it exists) will be used instead of the defaults.vim file shipped in the package and will persist through upgrades. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-3296 (* Security fix *) l/fluidsynth-2.3.0-x86_64-1.txz: Upgraded. l/imagemagick-7.1.0_49-x86_64-1.txz: Upgraded. l/libcap-2.66-x86_64-1.txz: Upgraded. l/netpbm-10.99.03-x86_64-1.txz: Upgraded. l/readline-8.2.000-x86_64-1.txz: Upgraded. l/xapian-core-1.4.21-x86_64-1.txz: Upgraded. n/dnsmasq-2.87-x86_64-1.txz: Upgraded. Fix write-after-free error in DHCPv6 server code. For more information, see: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-0934 (* Security fix *) x/xterm-373-x86_64-1.txz: Upgraded. xap/vim-gvim-9.0.0594-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/l/readline/readline-8.1-patches/readline81-001')
-rw-r--r--source/l/readline/readline-8.1-patches/readline81-00192
1 files changed, 0 insertions, 92 deletions
diff --git a/source/l/readline/readline-8.1-patches/readline81-001 b/source/l/readline/readline-8.1-patches/readline81-001
deleted file mode 100644
index 2f99282c..00000000
--- a/source/l/readline/readline-8.1-patches/readline81-001
+++ /dev/null
@@ -1,92 +0,0 @@
- READLINE PATCH REPORT
- =====================
-
-Readline-Release: 8.1
-Patch-ID: readline81-001
-
-Bug-Reported-by: Tom Tromey <tom@tromey.com>
-Bug-Reference-ID: <875z3u9fd0.fsf@tromey.com>
-Bug-Reference-URL: https://lists.gnu.org/archive/html/bug-readline/2021-01/msg00009.html
-
-Bug-Description:
-
-The code to check readline versions in an inputrc file had the sense of the
-comparisons reversed.
-
-Patch (apply with `patch -p0'):
-
-*** ../readline-8.1-patched/bind.c 2020-10-26 10:03:14.000000000 -0400
---- bind.c 2021-01-18 16:38:48.000000000 -0500
-***************
-*** 1235,1239 ****
- else if (_rl_strnicmp (args, "version", 7) == 0)
- {
-! int rlversion, versionarg, op, previ, major, minor;
-
- _rl_parsing_conditionalized_out = 1;
---- 1235,1239 ----
- else if (_rl_strnicmp (args, "version", 7) == 0)
- {
-! int rlversion, versionarg, op, previ, major, minor, opresult;
-
- _rl_parsing_conditionalized_out = 1;
-***************
-*** 1295,1316 ****
- {
- case OP_EQ:
-! _rl_parsing_conditionalized_out = rlversion == versionarg;
- break;
- case OP_NE:
-! _rl_parsing_conditionalized_out = rlversion != versionarg;
- break;
- case OP_GT:
-! _rl_parsing_conditionalized_out = rlversion > versionarg;
- break;
- case OP_GE:
-! _rl_parsing_conditionalized_out = rlversion >= versionarg;
- break;
- case OP_LT:
-! _rl_parsing_conditionalized_out = rlversion < versionarg;
- break;
- case OP_LE:
-! _rl_parsing_conditionalized_out = rlversion <= versionarg;
- break;
- }
- }
- /* Check to see if the first word in ARGS is the same as the
---- 1295,1317 ----
- {
- case OP_EQ:
-! opresult = rlversion == versionarg;
- break;
- case OP_NE:
-! opresult = rlversion != versionarg;
- break;
- case OP_GT:
-! opresult = rlversion > versionarg;
- break;
- case OP_GE:
-! opresult = rlversion >= versionarg;
- break;
- case OP_LT:
-! opresult = rlversion < versionarg;
- break;
- case OP_LE:
-! opresult = rlversion <= versionarg;
- break;
- }
-+ _rl_parsing_conditionalized_out = 1 - opresult;
- }
- /* Check to see if the first word in ARGS is the same as the
-
-*** ../readline-8.1/patchlevel 2013-11-15 08:11:11.000000000 -0500
---- patchlevel 2014-03-21 08:28:40.000000000 -0400
-***************
-*** 1,3 ****
- # Do not edit -- exists only for use by patch
-
-! 0
---- 1,3 ----
- # Do not edit -- exists only for use by patch
-
-! 1