Add leak detection, fix leaks.
Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
b9d4e97c87
commit
d5ec8efc70
@ -298,11 +298,8 @@ static int setup_test(struct evp_test *t, const struct evp_test_method *tmeth)
|
|||||||
}
|
}
|
||||||
ERR_clear_error();
|
ERR_clear_error();
|
||||||
t->meth->cleanup(t);
|
t->meth->cleanup(t);
|
||||||
/* If new test type free old data */
|
|
||||||
if (tmeth != t->meth && t->data) {
|
|
||||||
OPENSSL_free(t->data);
|
OPENSSL_free(t->data);
|
||||||
t->data = NULL;
|
t->data = NULL;
|
||||||
}
|
|
||||||
if (t->expected_err) {
|
if (t->expected_err) {
|
||||||
OPENSSL_free(t->expected_err);
|
OPENSSL_free(t->expected_err);
|
||||||
t->expected_err = NULL;
|
t->expected_err = NULL;
|
||||||
@ -323,9 +320,13 @@ static EVP_PKEY *find_key(const char *name, struct key_list *lst)
|
|||||||
|
|
||||||
static void free_key_list(struct key_list *lst)
|
static void free_key_list(struct key_list *lst)
|
||||||
{
|
{
|
||||||
for (; lst; lst = lst->next) {
|
while (lst != NULL) {
|
||||||
|
struct key_list *ltmp;
|
||||||
EVP_PKEY_free(lst->key);
|
EVP_PKEY_free(lst->key);
|
||||||
OPENSSL_free(lst->name);
|
OPENSSL_free(lst->name);
|
||||||
|
ltmp = lst->next;
|
||||||
|
OPENSSL_free(lst);
|
||||||
|
lst = ltmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -449,6 +450,8 @@ int main(int argc, char **argv)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
|
||||||
|
|
||||||
ERR_load_crypto_strings();
|
ERR_load_crypto_strings();
|
||||||
OpenSSL_add_all_algorithms();
|
OpenSSL_add_all_algorithms();
|
||||||
t.meth = NULL;
|
t.meth = NULL;
|
||||||
@ -477,6 +480,11 @@ int main(int argc, char **argv)
|
|||||||
free_key_list(t.public);
|
free_key_list(t.public);
|
||||||
free_key_list(t.private);
|
free_key_list(t.private);
|
||||||
fclose(in);
|
fclose(in);
|
||||||
|
EVP_cleanup();
|
||||||
|
CRYPTO_cleanup_all_ex_data();
|
||||||
|
ERR_remove_thread_state(NULL);
|
||||||
|
ERR_free_strings();
|
||||||
|
CRYPTO_mem_leaks_fp(stderr);
|
||||||
if (t.errors)
|
if (t.errors)
|
||||||
return 1;
|
return 1;
|
||||||
return 0;
|
return 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user