[Pkg-gnutls-commits] r591 - in /packages/gnutls26/branches/branch2.5.x/debian: changelog patches/20_fix_501077.diff

ametzler at users.alioth.debian.org ametzler at users.alioth.debian.org
Sat Oct 25 08:31:24 UTC 2008


Author: ametzler
Date: Sat Oct 25 08:31:24 2008
New Revision: 591

URL: http://svn.debian.org/wsvn/pkg-gnutls/?sc=1&rev=591
Log:
package 2.6.0 and pull fix for 501077 from git.

Added:
    packages/gnutls26/branches/branch2.5.x/debian/patches/20_fix_501077.diff
Modified:
    packages/gnutls26/branches/branch2.5.x/debian/changelog

Modified: packages/gnutls26/branches/branch2.5.x/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls26/branches/branch2.5.x/debian/changelog?rev=591&op=diff
==============================================================================
--- packages/gnutls26/branches/branch2.5.x/debian/changelog (original)
+++ packages/gnutls26/branches/branch2.5.x/debian/changelog Sat Oct 25 08:31:24 2008
@@ -1,8 +1,10 @@
-gnutls26 (2.5.9-2) UNRELEASED; urgency=low
-
-  * NOT RELEASED YET
-
- -- Andreas Metzler <ametzler at debian.org>  Sat, 04 Oct 2008 13:26:05 +0200
+gnutls26 (2.6.0-1) experimental; urgency=low
+
+  * New upstream stable release.
+  * Add debian/patches/20_fix_501077.diff to fix an out of bound access in
+    gnutls-openssl. (Thanks, Thomas Viehmann). Closes: #501077
+
+ -- Andreas Metzler <ametzler at debian.org>  Sat, 25 Oct 2008 09:59:03 +0200
 
 gnutls26 (2.5.9-1) experimental; urgency=low
 

Added: packages/gnutls26/branches/branch2.5.x/debian/patches/20_fix_501077.diff
URL: http://svn.debian.org/wsvn/pkg-gnutls/packages/gnutls26/branches/branch2.5.x/debian/patches/20_fix_501077.diff?rev=591&op=file
==============================================================================
--- packages/gnutls26/branches/branch2.5.x/debian/patches/20_fix_501077.diff (added)
+++ packages/gnutls26/branches/branch2.5.x/debian/patches/20_fix_501077.diff Sat Oct 25 08:31:24 2008
@@ -1,0 +1,21 @@
+From: Simon Josefsson <simon at josefsson.org>
+Date: Mon, 6 Oct 2008 08:58:18 +0000 (+0200)
+Subject: Get issuer dn in X509_get_issuer_name, correct last patch.
+X-Git-Url: http://git.savannah.gnu.org/gitweb/?p=gnutls.git;a=commitdiff_plain;h=416fb9320bf29353a42cf12506262ae2cabb589d
+
+Get issuer dn in X509_get_issuer_name, correct last patch.
+---
+
+diff --git a/libextra/gnutls_openssl.c b/libextra/gnutls_openssl.c
+index fbaa3ea..797a4f5 100644
+--- a/libextra/gnutls_openssl.c
++++ b/libextra/gnutls_openssl.c
+@@ -872,7 +872,7 @@ X509_get_issuer_name (const X509 * cert)
+ {
+   gnutls_x509_dn *dn;
+   dn = (gnutls_x509_dn *) calloc (1, sizeof (gnutls_x509_dn));
+-  if (gnutls_x509_extract_certificate_dn (cert, dn) < 0)
++  if (gnutls_x509_extract_certificate_issuer_dn (cert, dn) < 0)
+     {
+       free (dn);
+       return NULL;




More information about the Pkg-gnutls-commits mailing list