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

X Strike Force X.Org X11 SVN commit: r2573 - in trunk/app/xbase-clients: debian xprop-X11R7.0-1.0.1



Author: branden
Date: 2006-07-26 23:40:26 -0400 (Wed, 26 Jul 2006)
New Revision: 2573

Modified:
   trunk/app/xbase-clients/debian/changelog
   trunk/app/xbase-clients/xprop-X11R7.0-1.0.1/xprop.c
Log:
Patch xprop to stop segfaulting when deleted atoms are requested.
Committed upstream as git 47514347db811d002e7f3ca05d390565bc3ee5e5.
(Closes: #197526)


Modified: trunk/app/xbase-clients/debian/changelog
===================================================================
--- trunk/app/xbase-clients/debian/changelog	2006-07-27 03:37:46 UTC (rev 2572)
+++ trunk/app/xbase-clients/debian/changelog	2006-07-27 03:40:26 UTC (rev 2573)
@@ -1,3 +1,11 @@
+xbase-clients (1:7.1.ds-3) unstable; urgency=low
+
+  * Patch xprop to stop segfaulting when deleted atoms are requested.
+    Committed upstream as git 47514347db811d002e7f3ca05d390565bc3ee5e5.
+    (Closes: #197526)
+
+ -- Branden Robinson <branden@debian.org>  Wed, 26 Jul 2006 23:32:23 -0400
+
 xbase-clients (1:7.1.ds-2) unstable; urgency=high
 
   * Security update. Fix for setuid privledge escalation vulernabilities in

Modified: trunk/app/xbase-clients/xprop-X11R7.0-1.0.1/xprop.c
===================================================================
--- trunk/app/xbase-clients/xprop-X11R7.0-1.0.1/xprop.c	2006-07-27 03:37:46 UTC (rev 2572)
+++ trunk/app/xbase-clients/xprop-X11R7.0-1.0.1/xprop.c	2006-07-27 03:40:26 UTC (rev 2573)
@@ -1199,6 +1199,8 @@
 	nbytes = sizeof(short);
     else if (actual_format == 8)
 	nbytes = 1;
+    else if (actual_format == 0)
+	nbytes = 0;
     else
 	abort();
     *length = min(nitems * nbytes, max_len);



Reply to: