CVSROOT: /cvs Module name: src Changes by: t...@cvs.openbsd.org 2023/07/04 02:47:01
Modified files: regress/lib/libssl/ssl: ssltest.c Log message: Plug leak in the ssltest Removing -tls1 moved some tests from the legacy stack to the TLSv1.3 stack. On a HRR, the alpn callback would be called twice and allocate the global twice, thereby leaking. So free it up front. Joint suffering with bcook and beck