Remove double semi (;)
When in the middle of declarations, some C compilers will complain. Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
parent
47abe38004
commit
3cb9fd97ce
@ -650,7 +650,7 @@ static int derive_pvk_key(unsigned char *key,
|
||||
const unsigned char *salt, unsigned int saltlen,
|
||||
const unsigned char *pass, int passlen)
|
||||
{
|
||||
EVP_MD_CTX *mctx = EVP_MD_CTX_new();;
|
||||
EVP_MD_CTX *mctx = EVP_MD_CTX_new();
|
||||
int rv = 1;
|
||||
if (mctx == NULL
|
||||
|| !EVP_DigestInit_ex(mctx, EVP_sha1(), NULL)
|
||||
|
Loading…
Reference in New Issue
Block a user