gnutls-commit
[Top][All Lists]
Advanced

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

[SCM] GNU gnutls branch, gnutls_2_10_x, updated. gnutls_2_10_0-7-g1e338d


From: Nikos Mavrogiannopoulos
Subject: [SCM] GNU gnutls branch, gnutls_2_10_x, updated. gnutls_2_10_0-7-g1e338d7
Date: Mon, 05 Jul 2010 06:32:54 +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=1e338d75555d50af19d9593bc27eb1334159af2a

The branch, gnutls_2_10_x has been updated
       via  1e338d75555d50af19d9593bc27eb1334159af2a (commit)
      from  1a5729ea07857ff66699e98249b8cd22bba3ab1a (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 1e338d75555d50af19d9593bc27eb1334159af2a
Author: Nikos Mavrogiannopoulos <address@hidden>
Date:   Mon Jul 5 08:32:00 2010 +0200

    Do not crash if input is redirected from /dev/null.

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

Summary of changes:
 src/certtool-cfg.c |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/certtool-cfg.c b/src/certtool-cfg.c
index d6988ec..41bcc17 100644
--- a/src/certtool-cfg.c
+++ b/src/certtool-cfg.c
@@ -250,6 +250,10 @@ read_int_with_default (const char *input_str, int def)
 
   printf (input_str, def);
   in = readline ("");
+  if (in == NULL)
+    {
+      return def;
+    }
 
   l = strtol (in, &endptr, 0);
 


hooks/post-receive
-- 
GNU gnutls



reply via email to

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