summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_lcidm.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ssl/quic/quic_lcidm.c b/ssl/quic/quic_lcidm.c
index a79eab8781..0766f4aaf6 100644
--- a/ssl/quic/quic_lcidm.c
+++ b/ssl/quic/quic_lcidm.c
@@ -149,6 +149,9 @@ static QUIC_LCID *lcidm_get_lcid(const QUIC_LCIDM *lcidm, const QUIC_CONN_ID *lc
key.cid = *lcid;
+ if (key.cid.id_len > QUIC_MAX_CONN_ID_LEN)
+ return NULL;
+
return lh_QUIC_LCID_retrieve(lcidm->lcids, &key);
}
@@ -208,6 +211,9 @@ static QUIC_LCID *lcidm_conn_new_lcid(QUIC_LCIDM *lcidm, QUIC_LCIDM_CONN *conn,
{
QUIC_LCID *lcid_obj;
+ if (lcid->id_len > QUIC_MAX_CONN_ID_LEN)
+ return NULL;
+
if ((lcid_obj = OPENSSL_zalloc(sizeof(*lcid_obj))) == NULL)
return NULL;