tags 567192 + pending
thanks

Dear maintainer,

I've prepared an NMU for ircd-hybrid (versioned as 1:7.2.2.dfsg.2-6.1)
and uploaded it to DELAYED/2, according to devref §5.11.1. The patch is
the one reported in the bug log, provided by the security team.

Regards.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -<>- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...........| ..: |.... Je dis tu à tous ceux que j'aime
diff -u ircd-hybrid-7.2.2.dfsg.2/debian/changelog ircd-hybrid-7.2.2.dfsg.2/debian/changelog
--- ircd-hybrid-7.2.2.dfsg.2/debian/changelog
+++ ircd-hybrid-7.2.2.dfsg.2/debian/changelog
@@ -1,3 +1,11 @@
+ircd-hybrid (1:7.2.2.dfsg.2-6.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix integer underflow, apply patch for DSA-1980-1 by the security team.
+    (Closes: #567192)
+
+ -- Stefano Zacchiroli <z...@debian.org>  Wed, 17 Feb 2010 12:40:41 +0100
+
 ircd-hybrid (1:7.2.2.dfsg.2-6) unstable; urgency=low
 
   * Add previously forgotten Swedish debconf translation.
only in patch2:
unchanged:
--- ircd-hybrid-7.2.2.dfsg.2.orig/src/irc_string.c
+++ ircd-hybrid-7.2.2.dfsg.2/src/irc_string.c
@@ -103,7 +103,9 @@
     }
     else
       *d++ = *src;
-    ++src, --len;
+    if (len > 0) {
+    	++src, --len;
+    }
   }
   *d = '\0';
   return dest;

Reply via email to