summaryrefslogtreecommitdiff
path: root/lib/state.c
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2018-04-17 10:59:25 +0200
committerNikos Mavrogiannopoulos <nmav@redhat.com>2018-04-18 16:17:44 +0200
commit2bc0a7f5cc4c203d3ad11e0b73c77986ffa5bf28 (patch)
treebe8121c87b8e6e5a98751a9a4b1f837d377ffb18 /lib/state.c
parentdfc40f1250228278ec4c0d1d5bc29d396605b535 (diff)
downloadgnutls-tmp-constate-fix.tar.gz
_gnutls_epoch_new: allow re-allocation epoch next epochtmp-constate-fix
On certain cases when re-handshake is interrupted by application data, _gnutls_epoch_new() will be called twice. Make sure that this does not lead to an error. We also rename the function to clarify its purpose _gnutls_epoch_setup_next(). Resolves #426 Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/state.c')
-rw-r--r--lib/state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/state.c b/lib/state.c
index 1062c446bf..a669cf3d6c 100644
--- a/lib/state.c
+++ b/lib/state.c
@@ -299,7 +299,7 @@ int gnutls_init(gnutls_session_t * session, unsigned int flags)
if (*session == NULL)
return GNUTLS_E_MEMORY_ERROR;
- ret = _gnutls_epoch_new(*session, 1, NULL);
+ ret = _gnutls_epoch_setup_next(*session, 1, NULL);
if (ret < 0) {
gnutls_free(*session);
return gnutls_assert_val(GNUTLS_E_MEMORY_ERROR);