mirror of
https://github.com/openssl/openssl.git
synced 2025-03-19 19:50:42 +08:00
Fixup secmemtest for the change of CRYPTO_free() and friends
Switching it to use OPENSSL_free() et al when appropriate. Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
parent
9eaa5f9a32
commit
d6b55faca3
@ -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. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user