~ubuntu-branches/debian/stretch/gnomint/stretch

« back to all changes in this revision

Viewing changes to debian/patches/682432.patch

  • Committer: Package Import Robot
  • Author(s): Sebastian Ramacher
  • Date: 2012-08-04 19:09:48 UTC
  • Revision ID: package-import@ubuntu.com-20120804190948-zmupv2alsmm5wvcu
Tags: 1.2.1-4
* QA upload.
* d/patches/682432.patch: Fix double free in tls_creation_data_free.
  (Closes: #682432)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Description: Fix double free in tls_creation_data_free.
 
2
Author: Sebastian Ramacher <s.ramacher@gmx.at>
 
3
Bug-Debian: http://bugs.debian.org/682432
 
4
Last-Update: 2012-08-04
 
5
 
 
6
--- gnomint-1.2.1.orig/src/tls.c
 
7
+++ gnomint-1.2.1/src/tls.c
 
8
@@ -1639,8 +1639,6 @@ void tls_creation_data_free (TlsCreation
 
9
                g_free (cd->emailAddress);
 
10
        if (cd->password)
 
11
                g_free (cd->password);
 
12
-        if (cd->crl_distribution_point)
 
13
-                g_free (cd->crl_distribution_point);
 
14
         if (cd->parent_ca_id_str)
 
15
                 g_free (cd->parent_ca_id_str);
 
16
        if (cd->crl_distribution_point)