mirror of
https://github.com/openssl/openssl.git
synced 2025-03-01 19:28:10 +08:00
QUIC CHANNEL: Fix bug where time callback arg wasn't passed
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20423)
This commit is contained in:
parent
878df9be67
commit
66ec534861
@ -150,7 +150,7 @@ static int ch_init(QUIC_CHANNEL *ch)
|
||||
|
||||
ch->have_statm = 1;
|
||||
ch->cc_method = &ossl_cc_newreno_method;
|
||||
if ((ch->cc_data = ch->cc_method->new(get_time, NULL)) == NULL)
|
||||
if ((ch->cc_data = ch->cc_method->new(get_time, ch)) == NULL)
|
||||
goto err;
|
||||
|
||||
if ((ch->ackm = ossl_ackm_new(get_time, ch, &ch->statm,
|
||||
|
Loading…
Reference in New Issue
Block a user