mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 13:03:39 +08:00
Fix stack-use-after-scope
Fixes regression from #5667. Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Ben Kaduk <kaduk@mit.edu> Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5701)
This commit is contained in:
parent
9d9dc6ac85
commit
696de86f8e
@ -744,6 +744,9 @@ EXT_RETURN tls_construct_ctos_early_data(SSL *s, WPACKET *pkt,
|
||||
unsigned int context, X509 *x,
|
||||
size_t chainidx)
|
||||
{
|
||||
#ifndef OPENSSL_NO_PSK
|
||||
char identity[PSK_MAX_IDENTITY_LEN + 1];
|
||||
#endif /* OPENSSL_NO_PSK */
|
||||
const unsigned char *id = NULL;
|
||||
size_t idlen = 0;
|
||||
SSL_SESSION *psksess = NULL;
|
||||
@ -765,7 +768,6 @@ EXT_RETURN tls_construct_ctos_early_data(SSL *s, WPACKET *pkt,
|
||||
|
||||
#ifndef OPENSSL_NO_PSK
|
||||
if (psksess == NULL && s->psk_client_callback != NULL) {
|
||||
char identity[PSK_MAX_IDENTITY_LEN + 1];
|
||||
unsigned char psk[PSK_MAX_PSK_LEN];
|
||||
size_t psklen = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user