Skip to content

Commit

Permalink
Fix Windows build: initialize local variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitri Tikhonov committed Oct 13, 2020
1 parent 04f8f44 commit a3e1f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liblsquic/lsquic_enc_sess_ietf.c
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ iquic_esfi_create_client (const char *hostname,
struct lsquic_alarmset *alset, unsigned max_streams_uni)
{
struct enc_sess_iquic *enc_sess;
SSL_CTX *ssl_ctx;
SSL_CTX *ssl_ctx = NULL;
SSL_SESSION *ssl_session;
const struct alpn_map *am;
int transpa_len;
Expand Down

0 comments on commit a3e1f0d

Please sign in to comment.