summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/apps/gendsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libssl/src/apps/gendsa.c')
-rw-r--r--lib/libssl/src/apps/gendsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/apps/gendsa.c b/lib/libssl/src/apps/gendsa.c
index 612bdfbc1db..5c9ec7d24b5 100644
--- a/lib/libssl/src/apps/gendsa.c
+++ b/lib/libssl/src/apps/gendsa.c
@@ -266,7 +266,7 @@ end:
if (in != NULL) BIO_free(in);
if (out != NULL) BIO_free_all(out);
if (dsa != NULL) DSA_free(dsa);
- if(passout) OPENSSL_free(passout);
+ if(passout) free(passout);
apps_shutdown();
OPENSSL_EXIT(ret);
}