]> git.ipfire.org Git - thirdparty/haproxy.git/commit
MINOR: quic: Remove pool_zalloc() from qc_conn_alloc_ssl_ctx()
authorFrédéric Lécaille <flecaille@haproxy.com>
Thu, 15 Jun 2023 09:02:53 +0000 (11:02 +0200)
committerFrédéric Lécaille <flecaille@haproxy.com>
Fri, 16 Jun 2023 14:56:08 +0000 (16:56 +0200)
commit9f9bd5f84d6b183cc72dd39ebac4a85594b13c71
treed2207adb3e51723d68483d706012575c99dbfbce
parentddc616933c90f743e992fd08ada6cb0fd5756d7b
MINOR: quic: Remove pool_zalloc() from qc_conn_alloc_ssl_ctx()

pool_zalloc() is replaced by pool_alloc() into qc_conn_alloc_ssl_ctx() to allocate
a ssl_sock_ctx struct. ssl_sock_ctx struct member are all initiliazed to null values
excepted ->ssl which is initialized by the next statement: a call to qc_ssl_sess_init().
src/quic_conn.c