diff options
Diffstat (limited to 'src/lib/libssl/src/apps/dsa.c')
-rw-r--r-- | src/lib/libssl/src/apps/dsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/src/apps/dsa.c b/src/lib/libssl/src/apps/dsa.c index b2c58d03c1..af5702cf72 100644 --- a/src/lib/libssl/src/apps/dsa.c +++ b/src/lib/libssl/src/apps/dsa.c | |||
@@ -341,8 +341,8 @@ end: | |||
341 | if (in != NULL) BIO_free(in); | 341 | if (in != NULL) BIO_free(in); |
342 | if (out != NULL) BIO_free_all(out); | 342 | if (out != NULL) BIO_free_all(out); |
343 | if (dsa != NULL) DSA_free(dsa); | 343 | if (dsa != NULL) DSA_free(dsa); |
344 | if (passin) OPENSSL_free(passin); | 344 | if (passin) free(passin); |
345 | if (passout) OPENSSL_free(passout); | 345 | if (passout) free(passout); |
346 | apps_shutdown(); | 346 | apps_shutdown(); |
347 | OPENSSL_EXIT(ret); | 347 | OPENSSL_EXIT(ret); |
348 | } | 348 | } |