diff options
author | Ingela Anderton Andin <[email protected]> | 2016-01-19 12:12:45 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2016-01-21 10:43:48 +0100 |
commit | 5ae72e324513fe1b724b7eaa3a707302338646c7 (patch) | |
tree | 6ba19d43f29bb6130045fc5ccfe9a694d969a6d3 /lib/ssl | |
parent | 931b51693132839c3bc0edc3ed01364135293c1b (diff) | |
download | otp-5ae72e324513fe1b724b7eaa3a707302338646c7.tar.gz otp-5ae72e324513fe1b724b7eaa3a707302338646c7.tar.bz2 otp-5ae72e324513fe1b724b7eaa3a707302338646c7.zip |
ssl: Fix timing releated bug
Diffstat (limited to 'lib/ssl')
-rw-r--r-- | lib/ssl/src/tls_connection.erl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ssl/src/tls_connection.erl b/lib/ssl/src/tls_connection.erl index b2b85eaf8d..c3f0206d25 100644 --- a/lib/ssl/src/tls_connection.erl +++ b/lib/ssl/src/tls_connection.erl @@ -764,6 +764,8 @@ handle_tls_handshake(Handle, StateName, case Handle(Packet, FsmReturn) of {next_state, NextStateName, State, _Timeout} -> handle_tls_handshake(Handle, NextStateName, State); + {next_state, NextStateName, State} -> + handle_tls_handshake(Handle, NextStateName, State); {stop, _,_} = Stop -> Stop end; |