Skip to content

Commit

Permalink
TLS: Fix use of an uninitialized value
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #22523)
  • Loading branch information
hlandau authored and t8m committed Nov 2, 2023
1 parent 8cb4a47 commit f62fec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/statem/extensions_cust.c
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ int custom_ext_parse(SSL_CONNECTION *s, unsigned int context,
const unsigned char *ext_data, size_t ext_size, X509 *x,
size_t chainidx)
{
int al;
int al = 0;
custom_ext_methods *exts = &s->cert->custext;
custom_ext_method *meth;
ENDPOINT role = ENDPOINT_BOTH;
Expand Down

0 comments on commit f62fec6

Please sign in to comment.