Skip to content

Commit

Permalink
Fix a bad backport
Browse files Browse the repository at this point in the history
This is causing compilation failure

Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #22682)

(cherry picked from commit 2fd4fd3)
  • Loading branch information
mattcaswell authored and t8m committed Nov 9, 2023
1 parent e5b6a6b commit 75d57d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/s3_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -3366,7 +3366,7 @@ void ssl3_free(SSL *s)
OPENSSL_free(s->s3.alpn_proposed);

#ifndef OPENSSL_NO_PSK
OPENSSL_free(sc->s3.tmp.psk);
OPENSSL_free(s->s3.tmp.psk);
#endif

#ifndef OPENSSL_NO_SRP
Expand Down

0 comments on commit 75d57d0

Please sign in to comment.