[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-19-g199a7ff
From: |
Simon Josefsson |
Subject: |
[SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-19-g199a7ff |
Date: |
Mon, 03 May 2010 13:19:35 +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=199a7ff4d57af9e230441b31a1be7330ba347a49
The branch, master has been updated
via 199a7ff4d57af9e230441b31a1be7330ba347a49 (commit)
from a182e618ec70d9ed34b706c0c2b900d8a525d23e (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 199a7ff4d57af9e230441b31a1be7330ba347a49
Author: Simon Josefsson <address@hidden>
Date: Mon May 3 15:19:30 2010 +0200
Protect against infloops.
-----------------------------------------------------------------------
Summary of changes:
tests/mini-x509.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/tests/mini-x509.c b/tests/mini-x509.c
index 0d411a3..40178d2 100644
--- a/tests/mini-x509.c
+++ b/tests/mini-x509.c
@@ -191,6 +191,10 @@ main (int argc, char *argv[])
do
{
+ static int max_iter = 0;
+ if (max_iter++ > 10)
+ abort ();
+
if (cret == GNUTLS_E_AGAIN)
{
cret = gnutls_handshake (client);
hooks/post-receive
--
GNU gnutls
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [SCM] GNU gnutls branch, master, updated. gnutls_2_9_10-19-g199a7ff,
Simon Josefsson <=