gnutls-commit
[Top][All Lists]
Advanced

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

[SCM] GNU gnutls branch, gnutls_2_12_x, updated. gnutls_2_11_6-98-g32dff


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, gnutls_2_12_x, updated. gnutls_2_11_6-98-g32dff49
Date: Tue, 15 Feb 2011 21:22:38 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU gnutls".

http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=32dff491a6f7517e26f253680b32e3c5e723d2a9

The branch, gnutls_2_12_x has been updated
       via  32dff491a6f7517e26f253680b32e3c5e723d2a9 (commit)
      from  cada3a98af8b9a90939ed570a3f4f223e3edd033 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 32dff491a6f7517e26f253680b32e3c5e723d2a9
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Tue Feb 15 22:15:05 2011 +0100

    Corrected bug in DHE-PSK in freeing username/key.

-----------------------------------------------------------------------

Summary of changes:
 lib/auth_dhe_psk.c |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/lib/auth_dhe_psk.c b/lib/auth_dhe_psk.c
index a338117..d6333bf 100644
--- a/lib/auth_dhe_psk.c
+++ b/lib/auth_dhe_psk.c
@@ -109,8 +109,10 @@ gen_psk_client_kx (gnutls_session_t session, opaque ** 
data)
 cleanup:
   gnutls_free (tmp_data);
   if (free)
-    _gnutls_free_datum(&username);
-    _gnutls_free_datum(&key);
+    {
+      _gnutls_free_datum(&username);
+      _gnutls_free_datum(&key);
+    }
 
   return ret;
 


hooks/post-receive
-- 
GNU gnutls



reply via email to

[Prev in Thread] Current Thread [Next in Thread]