From: Yann Ylavic Date: Sat, 18 Mar 2023 15:28:33 +0000 (+0000) Subject: mod_http2: Fix memory leak in calc_sha256_hash(). X-Git-Tag: 2.5.0-alpha2-ci-test-only~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d49af21477de943ab51c05a75596ad3867680b3c;p=thirdparty%2Fapache%2Fhttpd.git mod_http2: Fix memory leak in calc_sha256_hash(). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1908502 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_push.c b/modules/http2/h2_push.c index 462c47002ae..dd0928b7190 100644 --- a/modules/http2/h2_push.c +++ b/modules/http2/h2_push.c @@ -502,6 +502,7 @@ static void calc_sha256_hash(h2_push_diary *diary, apr_uint64_t *phash, h2_push sha256_update(md, push->req->authority); sha256_update(md, push->req->path); EVP_DigestFinal(md, hash, &len); + EVP_MD_CTX_destroy(md); val = 0; for (i = 0; i != len; ++i)