Hello community,

here is the log from the commit of package bash for openSUSE:Factory checked in 
at 2018-02-10 17:52:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bash (Old)
 and      /work/SRC/openSUSE:Factory/.bash.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bash"

Sat Feb 10 17:52:08 2018 rev:143 rq:573586 version:unknown

Changes:
--------
--- /work/SRC/openSUSE:Factory/bash/bash.changes        2018-02-03 
15:35:42.160427669 +0100
+++ /work/SRC/openSUSE:Factory/.bash.new/bash.changes   2018-02-10 
17:52:10.509146873 +0100
@@ -1,0 +2,8 @@
+Tue Feb  6 23:25:18 UTC 2018 - [email protected]
+
+- Add patch 19 to bash-4.4-patches.tar.bz2
+  * With certain values for PS1, especially those that wrap onto
+    three or more lines, readline will miscalculate the number of
+    invisible characters, leading to crashes and core dumps.
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ bash-4.4-patches.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bash-4.4-patches/bash44-019 
new/bash-4.4-patches/bash44-019
--- old/bash-4.4-patches/bash44-019     1970-01-01 01:00:00.000000000 +0100
+++ new/bash-4.4-patches/bash44-019     2018-02-06 22:23:47.000000000 +0100
@@ -0,0 +1,50 @@
+                            BASH PATCH REPORT
+                            =================
+
+Bash-Release:  4.4
+Patch-ID:      bash44-019
+
+Bug-Reported-by:       Kieran Grant <[email protected]>
+Bug-Reference-ID:      <[email protected]>
+Bug-Reference-URL:     
http://lists.gnu.org/archive/html/bug-bash/2018-02/msg00002.html
+
+Bug-Description:
+
+With certain values for PS1, especially those that wrap onto three or more
+lines, readline will miscalculate the number of invisible characters,
+leading to crashes and core dumps.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-4.4.18/lib/readline/display.c      2016-07-28 14:49:33.000000000 
-0400
+--- lib/readline/display.c     2018-02-03 19:19:35.000000000 -0500
+***************
+*** 772,776 ****
+        wadjust = (newlines == 0)
+                 ? prompt_invis_chars_first_line
+!                : ((newlines == prompt_lines_estimate) ? wrap_offset : 
prompt_invis_chars_first_line);
+  
+        /* fix from Darin Johnson <[email protected]> for prompt string with
+--- 788,794 ----
+        wadjust = (newlines == 0)
+                 ? prompt_invis_chars_first_line
+!                : ((newlines == prompt_lines_estimate)
+!                      ? (wrap_offset - prompt_invis_chars_first_line)
+!                      : 0);
+  
+        /* fix from Darin Johnson <[email protected]> for prompt string with
+*** ../bash-4.4/patchlevel.h   2016-06-22 14:51:03.000000000 -0400
+--- patchlevel.h       2016-10-01 11:01:28.000000000 -0400
+***************
+*** 26,30 ****
+     looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 18
+  
+  #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+     looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 19
+  
+  #endif /* _PATCHLEVEL_H_ */


Reply via email to