From: Matt Caswell Date: Mon, 1 Oct 2018 11:06:06 +0000 (+0100) Subject: Fix a mem leak in the ocsp app X-Git-Tag: openssl-3.0.0-alpha1~3081 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=c20a76f695922f409c316399f7290530f7728f19 Fix a mem leak in the ocsp app Free memory allocated in the parent process that is not needed in the child. We also free it in the parent. Technically this isn't really required since we end up calling exit() soon afterwards - but to prevent false positives we free it anyway. Fixes a Coverity issue. Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/7335) --- diff --git a/apps/ocsp.c b/apps/ocsp.c index eb822c2696..7fd78624bb 100644 --- a/apps/ocsp.c +++ b/apps/ocsp.c @@ -950,6 +950,7 @@ static void spawn_loop(void) sleep(30); break; case 0: /* child */ + OPENSSL_free(kidpids); signal(SIGINT, SIG_DFL); signal(SIGTERM, SIG_DFL); if (termsig) @@ -976,6 +977,7 @@ static void spawn_loop(void) } /* The loop above can only break on termsig */ + OPENSSL_free(kidpids); syslog(LOG_INFO, "terminating on signal: %d", termsig); killall(0, kidpids); }