summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-03-02 16:05:36 +0000
committerMatt Caswell <matt@openssl.org>2023-05-01 11:03:54 +0100
commit0f1c43c441acd23ba2c14c93f9ce059348a617b0 (patch)
tree041491d91609a0e3c84b8ea52cd96025df1c764a /test
parentf6f45c55ea0f597387005c429beba80d76484389 (diff)
downloadopenssl-new-0f1c43c441acd23ba2c14c93f9ce059348a617b0.tar.gz
QUIC CC: Minor fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20423)
Diffstat (limited to 'test')
-rw-r--r--test/quic_cc_test.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/quic_cc_test.c b/test/quic_cc_test.c
index e3e5e87d38..3eef4d64a2 100644
--- a/test/quic_cc_test.c
+++ b/test/quic_cc_test.c
@@ -371,6 +371,8 @@ static int test_simulate(void)
allowance = ccm->get_tx_allowance(cc);
sz = allowance > mdpl ? mdpl : allowance;
+ if (sz > SIZE_MAX)
+ sz = SIZE_MAX;
/*
* QUIC minimum packet sizes, etc. mean that in practice we will not
@@ -381,7 +383,7 @@ static int test_simulate(void)
step_time(7);
- if (!TEST_true(net_sim_send(&sim, sz)))
+ if (!TEST_true(net_sim_send(&sim, (size_t)sz)))
goto err;
total_sent += sz;