diff options
author | Hamish Moffatt <hamish@cloud.net.au> | 2008-02-06 01:26:58 +0000 |
---|---|---|
committer | Hamish Moffatt <hamish@cloud.net.au> | 2008-02-06 01:26:58 +0000 |
commit | 83b7c8b381768a83fdca110a740448061ca2d898 (patch) | |
tree | 147441f9ce656876ed161a075d60a1c32001b848 /package/readline/readline52-011 | |
parent | d53b1d1f93fe0a92eaa92507a31e11a5f31a70d6 (diff) | |
download | buildroot-novena-83b7c8b381768a83fdca110a740448061ca2d898.tar.gz buildroot-novena-83b7c8b381768a83fdca110a740448061ca2d898.zip |
Commit the new upstream patches and remove the old
Diffstat (limited to 'package/readline/readline52-011')
-rw-r--r-- | package/readline/readline52-011 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/readline/readline52-011 b/package/readline/readline52-011 new file mode 100644 index 000000000..963632e57 --- /dev/null +++ b/package/readline/readline52-011 @@ -0,0 +1,32 @@ + READLINE PATCH REPORT + ===================== + +Readline-Release: 5.2 +Patch-ID: readline52-011 + +Bug-Reported-by: Uwe Doering <gemini@geminix.org> +Bug-Reference-ID: <46F3DD72.2090801@geminix.org> +Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2007-09/msg00102.html + +Bug-Description: + +There is an off-by-one error in the code that buffers characters received +very quickly in succession, causing characters to be dropped. + +Patch: + +*** ../readline-5.2-patched/input.c 2007-08-25 13:47:10.000000000 -0400 +--- ./input.c 2007-10-12 22:55:25.000000000 -0400 +*************** +*** 155,159 **** + pop_index--; + if (pop_index < 0) +! pop_index = ibuffer_len - 1; + ibuffer[pop_index] = key; + return (1); +--- 155,159 ---- + pop_index--; + if (pop_index < 0) +! pop_index = ibuffer_len; + ibuffer[pop_index] = key; + return (1); |