Commit 3cb9fd97 authored by Richard Levitte's avatar Richard Levitte
Browse files

Remove double semi (;)



When in the middle of declarations, some C compilers will complain.

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent 47abe380
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)