Don't Free() password if it was read from config file.
This commit is contained in:
parent
97853bd5c1
commit
e743a5134e
@ -878,8 +878,8 @@ end:
|
|||||||
EVP_PKEY_free(pkey);
|
EVP_PKEY_free(pkey);
|
||||||
X509_REQ_free(req);
|
X509_REQ_free(req);
|
||||||
X509_free(x509ss);
|
X509_free(x509ss);
|
||||||
if(passin) Free(passin);
|
if(passargin && passin) Free(passin);
|
||||||
if(passout) Free(passout);
|
if(passargout && passout) Free(passout);
|
||||||
OBJ_cleanup();
|
OBJ_cleanup();
|
||||||
#ifndef NO_DSA
|
#ifndef NO_DSA
|
||||||
if (dsa_params != NULL) DSA_free(dsa_params);
|
if (dsa_params != NULL) DSA_free(dsa_params);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user