From dacb66d824794dfd5296d9e03e4251c16290337c Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Thu, 28 Feb 2002 03:21:51 +0000 Subject: [PATCH] contrary to what comments say, DH* returned from ssl_dh_GetTmpParam() is _not_ static and needs to be freed via DH_free(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93624 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ssl/ssl_engine_init.c b/modules/ssl/ssl_engine_init.c index 9a37e4cf286..8cea93d3ef0 100644 --- a/modules/ssl/ssl_engine_init.c +++ b/modules/ssl/ssl_engine_init.c @@ -318,7 +318,7 @@ void ssl_init_TmpKeysHandle(int action, server_rec *s, apr_pool_t *p) length = i2d_DHparams(dh, NULL); ucp = ssl_asn1_table_set(mc->tTmpKeys, "DH:512", length); (void)i2d_DHparams(dh, &ucp); /* 2nd arg increments */ - /* no need to free dh, it's static */ + DH_free(dh); /* import 1024 bit DH param */ if ((dh = ssl_dh_GetTmpParam(1024)) == NULL) { @@ -329,7 +329,7 @@ void ssl_init_TmpKeysHandle(int action, server_rec *s, apr_pool_t *p) length = i2d_DHparams(dh, NULL); ucp = ssl_asn1_table_set(mc->tTmpKeys, "DH:1024", length); (void)i2d_DHparams(dh, &ucp); /* 2nd arg increments */ - /* no need to free dh, it's static */ + DH_free(dh); } /* Allocate Keys and Params */ -- 2.47.3