gnutls-commit
[Top][All Lists]
Advanced

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

[SCM] GNU gnutls branch, master, updated. gnutls_2_9_7-17-g3aa2517


From: Simon Josefsson
Subject: [SCM] GNU gnutls branch, master, updated. gnutls_2_9_7-17-g3aa2517
Date: Fri, 23 Oct 2009 16:21:15 +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=3aa2517f1787189667b62c63bd9aaa4dfa9dd9a7

The branch, master has been updated
       via  3aa2517f1787189667b62c63bd9aaa4dfa9dd9a7 (commit)
      from  22ce9a7d3220a99cb51e44be8e6c063b4bce5907 (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 3aa2517f1787189667b62c63bd9aaa4dfa9dd9a7
Author: Simon Josefsson <address@hidden>
Date:   Fri Oct 23 18:21:12 2009 +0200

    Fix forgotten braces.
    
    Reported by Jason Pettiss <address@hidden>.

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

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

diff --git a/lib/gnutlsxx.cpp b/lib/gnutlsxx.cpp
index 5bd61eb..b9f5c3e 100644
--- a/lib/gnutlsxx.cpp
+++ b/lib/gnutlsxx.cpp
@@ -987,8 +987,10 @@ psk_server_credentials::psk_server_credentials 
():credentials
     ret = gnutls_rsa_params_cpy (dst->params, src.params);
 
     if (ret < 0)
-      delete dst;
-    throw (ret);
+      {
+       delete dst;
+       throw (ret);
+      }
 
     return *dst;
   }


hooks/post-receive
-- 
GNU gnutls




reply via email to

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