[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#948850: marked as done (buster-pu: package csh/20110502-4+deb10u1)



Your message dated Sat, 08 Feb 2020 14:21:36 +0000
with message-id <cf1cb2f35981916a86b98b83609df15c95aa378b.camel@adam-barratt.org.uk>
and subject line Closing requests included in 10.3 point release
has caused the Debian Bug report #948850,
regarding buster-pu: package csh/20110502-4+deb10u1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
948850: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=948850
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: buster
User: release.debian.org@packages.debian.org
Usertags: pu

Hi,

let's fix the segmentation fault in csh's eval. #933057

this is a backport from sid and the updated package has already been
uploaded.


Andreas
diff -Nru csh-20110502/debian/changelog csh-20110502/debian/changelog
--- csh-20110502/debian/changelog	2018-09-10 13:49:15.000000000 +0200
+++ csh-20110502/debian/changelog	2020-01-13 22:40:53.000000000 +0100
@@ -1,3 +1,13 @@
+csh (20110502-4+deb10u1) buster; urgency=medium
+
+  * Non-maintainer upload.
+
+  [ Alastair McKinstry ]
+  * Fix for segfault on eval. Patch thanks to Keith Thompson, Graham Inggs.
+    Closes: #933057
+
+ -- Andreas Beckmann <anbe@debian.org>  Mon, 13 Jan 2020 22:40:53 +0100
+
 csh (20110502-4) unstable; urgency=medium
 
   * Take over as maintainer. Closes: #868691
diff -Nru csh-20110502/debian/patches/pointer_deref_comparison.patch csh-20110502/debian/patches/pointer_deref_comparison.patch
--- csh-20110502/debian/patches/pointer_deref_comparison.patch	2017-08-28 11:46:44.000000000 +0200
+++ csh-20110502/debian/patches/pointer_deref_comparison.patch	2020-01-13 22:40:53.000000000 +0100
@@ -1,3 +1,8 @@
+Last-Updated: 2019-09-21
+Bug-Origin: 	https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933057
+Forwarded: not-needed
+
+
 --- csh-20110502.orig/lex.c
 +++ csh-20110502/lex.c
 @@ -1304,7 +1304,7 @@ top:
@@ -5,7 +10,7 @@
      }
      if (alvec) {
 -	if ((alvecp = *alvec) != '\0') {
-+	if (*(alvecp = *alvec) != '\0') {
++	if ((alvecp = *alvec) != NULL) {
  	    alvec++;
  	    goto top;
  	}
@@ -14,7 +19,7 @@
  	    reset();
  	}
 -	if ((evalp = *evalvec) != '\0') {
-+	if (*(evalp = *evalvec) != '\0') {
++	if ((evalp = *evalvec) != NULL) {
  	    evalvec++;
  	    goto top;
  	}

--- End Message ---
--- Begin Message ---
Package: release.debian.org
Version: 10.3

Hi,

Each of the uploads referred to by these bugs was included in today's
stable point release.

Regards,

Adam

--- End Message ---

Reply to: