Free a temporary buffer used by dsaparam application The dsaparam application allocates a temporary buffer but then doesn't free it. Reviewed-by: Richard Levitte <levitte@openssl.org>
diff --git a/apps/dsaparam.c b/apps/dsaparam.c index c12bd70..cd2ca4c 100644 --- a/apps/dsaparam.c +++ b/apps/dsaparam.c
@@ -244,6 +244,7 @@ " return NULL;\n" " }\n" " return(dsa);\n}\n"); + OPENSSL_free(data); } if (!noout) {