Hello community,

here is the log from the commit of package bash for openSUSE:Factory checked in 
at 2012-11-10 16:54:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bash (Old)
 and      /work/SRC/openSUSE:Factory/.bash.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bash", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/bash/bash.changes        2012-10-18 
15:40:09.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.bash.new/bash.changes   2012-11-10 
16:54:11.000000000 +0100
@@ -1,0 +2,8 @@
+Mon Nov  5 12:41:57 UTC 2012 - [email protected]
+
+- Update bash 4.2 to patch level 39
+  * Official fix for the last crash fix
+  * Avoid variable expansion in arithmetic expressions when
+    evaluation is being suppressed
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ bash.spec ++++++
--- /var/tmp/diff_new_pack.KY10N4/_old  2012-11-10 16:54:13.000000000 +0100
+++ /var/tmp/diff_new_pack.KY10N4/_new  2012-11-10 16:54:13.000000000 +0100
@@ -23,7 +23,9 @@
 %if %suse_version > 1020
 BuildRequires:  fdupes
 %endif
+%if %suse_version > 1220
 BuildRequires:  makeinfo
+%endif
 BuildRequires:  ncurses-devel
 %define         bash_vers 4.2
 %define         rl_vers   6.2

++++++ bash-4.2-patches.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bash-4.2-patches/bash-4.2-read-escape-segfault.patch 
new/bash-4.2-patches/bash-4.2-read-escape-segfault.patch
--- old/bash-4.2-patches/bash-4.2-read-escape-segfault.patch    2012-08-24 
16:00:03.000000000 +0200
+++ new/bash-4.2-patches/bash-4.2-read-escape-segfault.patch    1970-01-01 
01:00:00.000000000 +0100
@@ -1,15 +0,0 @@
-*** ../bash-4.2-patched/builtins/read.def      2012-03-11 17:52:44.000000000 
-0400
---- builtins/read.def  2012-08-22 11:53:09.000000000 -0400
-***************
-*** 792,796 ****
-  #endif
-  
-!   if (saw_escape)
-      {
-        t = dequote_string (input_string);
---- 847,851 ----
-  #endif
-  
-!   if (saw_escape && input_string && *input_string)
-      {
-        t = dequote_string (input_string);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bash-4.2-patches/bash42-038 
new/bash-4.2-patches/bash42-038
--- old/bash-4.2-patches/bash42-038     1970-01-01 01:00:00.000000000 +0100
+++ new/bash-4.2-patches/bash42-038     2012-11-02 15:09:12.000000000 +0100
@@ -0,0 +1,47 @@
+                            BASH PATCH REPORT
+                            =================
+
+Bash-Release:  4.2
+Patch-ID:      bash42-038
+
+Bug-Reported-by:       [email protected]
+Bug-Reference-ID:      <[email protected]>
+Bug-Reference-URL:     
http://lists.gnu.org/archive/html/bug-bash/2012-08/msg00049.html
+
+Bug-Description:
+
+If a backslash-newline (which is removed) with no other input is given as
+input to `read', the shell tries to dereference a null pointer and seg faults.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-4.2-patched/builtins/read.def      2012-03-11 17:52:44.000000000 
-0400
+--- builtins/read.def  2012-08-22 11:53:09.000000000 -0400
+***************
+*** 792,796 ****
+  #endif
+  
+!   if (saw_escape)
+      {
+        t = dequote_string (input_string);
+--- 847,851 ----
+  #endif
+  
+!   if (saw_escape && input_string && *input_string)
+      {
+        t = dequote_string (input_string);
+*** ../bash-4.2-patched/patchlevel.h   Sat Jun 12 20:14:48 2010
+--- patchlevel.h       Thu Feb 24 21:41:34 2011
+***************
+*** 26,30 ****
+     looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 37
+  
+  #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+     looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 38
+  
+  #endif /* _PATCHLEVEL_H_ */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bash-4.2-patches/bash42-039 
new/bash-4.2-patches/bash42-039
--- old/bash-4.2-patches/bash42-039     1970-01-01 01:00:00.000000000 +0100
+++ new/bash-4.2-patches/bash42-039     2012-11-02 15:09:26.000000000 +0100
@@ -0,0 +1,58 @@
+                            BASH PATCH REPORT
+                            =================
+
+Bash-Release:  4.2
+Patch-ID:      bash42-039
+
+Bug-Reported-by:       Dan Douglas <[email protected]>
+Bug-Reference-ID:      <1498458.MpVlmOXDB7@smorgbox>
+Bug-Reference-URL:     
http://lists.gnu.org/archive/html/bug-bash/2012-09/msg00008.html
+
+Bug-Description:
+
+Under certain circumstances, bash attempts to expand variables in arithmetic
+expressions even when evaluation is being suppressed.
+
+Patch (apply with `patch -p0'):
+
+*** ../bash-4.2-patched/expr.c 2011-11-21 18:03:35.000000000 -0500
+--- expr.c     2012-09-09 16:31:18.000000000 -0400
+***************
+*** 1010,1013 ****
+--- 1073,1082 ----
+  #endif
+  
++ /*itrace("expr_streval: %s: noeval = %d", tok, noeval);*/
++   /* If we are suppressing evaluation, just short-circuit here instead of
++      going through the rest of the evaluator. */
++   if (noeval)
++     return (0);
++ 
+    /* [[[[[ */
+  #if defined (ARRAY_VARS)
+***************
+*** 1183,1186 ****
+--- 1256,1263 ----
+  
+        *cp = '\0';
++       /* XXX - watch out for pointer aliasing issues here */
++       if (curlval.tokstr && curlval.tokstr == tokstr)
++      init_lvalue (&curlval);
++ 
+        FREE (tokstr);
+        tokstr = savestring (tp);
+*** ../bash-4.2-patched/patchlevel.h   Sat Jun 12 20:14:48 2010
+--- patchlevel.h       Thu Feb 24 21:41:34 2011
+***************
+*** 26,30 ****
+     looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 38
+  
+  #endif /* _PATCHLEVEL_H_ */
+--- 26,30 ----
+     looks for to find the patch level (for the sccs version string). */
+  
+! #define PATCHLEVEL 39
+  
+  #endif /* _PATCHLEVEL_H_ */

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to