Commit d6b55fac authored by Richard Levitte's avatar Richard Levitte
Browse files

Fixup secmemtest for the change of CRYPTO_free() and friends



Switching it to use OPENSSL_free() et al when appropriate.

Reviewed-by: default avatarMatt Caswell <matt@openssl.org>
parent 9eaa5f9a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -20,8 +20,8 @@ int main(int argc, char **argv)
        perror("failed 1");
        return 1;
    }
    CRYPTO_secure_free(p);
    CRYPTO_free(q);
    OPENSSL_secure_free(p);
    OPENSSL_free(q);
    CRYPTO_secure_malloc_done();
#else
    /* Should fail. */