mirror of https://github.com/openssl/openssl.git
Fix Kerberos issue in ssl_session_dup
The fix for CVE-2015-1791 introduced an error in ssl_session_dup for
Kerberos.
Reviewed-by: Tim Hudson <tjh@openssl.org>
(cherry picked from commit dcad51bc13)
This commit is contained in:
parent
17689e7dc6
commit
8b4fd12b0d
|
|
@ -150,7 +150,7 @@ SSL_SESSION *ssl_session_dup(SSL_SESSION *src, int ticket)
|
|||
memcpy(dest, src, sizeof(*dest));
|
||||
|
||||
#ifndef OPENSSL_NO_KRB5
|
||||
dest->krb5_client_princ_len = dest->krb5_client_princ_len;
|
||||
dest->krb5_client_princ_len = src->krb5_client_princ_len;
|
||||
if (src->krb5_client_princ_len > 0)
|
||||
memcpy(dest->krb5_client_princ, src->krb5_client_princ,
|
||||
src->krb5_client_princ_len);
|
||||
|
|
|
|||
Loading…
Reference in New Issue