diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libssl/src/apps/dsa.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/libssl/src/apps/dsa.c b/src/lib/libssl/src/apps/dsa.c index 4026ba5d22..c35d15016a 100644 --- a/src/lib/libssl/src/apps/dsa.c +++ b/src/lib/libssl/src/apps/dsa.c | |||
@@ -332,10 +332,8 @@ end: | |||
332 | BIO_free_all(out); | 332 | BIO_free_all(out); |
333 | if (dsa != NULL) | 333 | if (dsa != NULL) |
334 | DSA_free(dsa); | 334 | DSA_free(dsa); |
335 | if (passin) | 335 | free(passin); |
336 | free(passin); | 336 | free(passout); |
337 | if (passout) | ||
338 | free(passout); | ||
339 | 337 | ||
340 | return (ret); | 338 | return (ret); |
341 | } | 339 | } |