summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/evp
diff options
context:
space:
mode:
authortb <>2024-02-29 20:04:43 +0000
committertb <>2024-02-29 20:04:43 +0000
commit4aefd75c4e8b3bc6c5de9ffbe716e8b965db44b2 (patch)
treeb74bd81227a1247d0828e68d0e3acf841f63f2ab /src/regress/lib/libcrypto/evp
parent78a9dee1607e020cdbd9875bd5656c9beda18386 (diff)
downloadopenbsd-4aefd75c4e8b3bc6c5de9ffbe716e8b965db44b2.tar.gz
openbsd-4aefd75c4e8b3bc6c5de9ffbe716e8b965db44b2.tar.bz2
openbsd-4aefd75c4e8b3bc6c5de9ffbe716e8b965db44b2.zip
CRYPTO_mem_leaks* will go away. Remove calls in legacy tests
Diffstat (limited to 'src/regress/lib/libcrypto/evp')
-rw-r--r--src/regress/lib/libcrypto/evp/evptest.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/evp/evptest.c b/src/regress/lib/libcrypto/evp/evptest.c
index 0b9436a83f..f652cf5a25 100644
--- a/src/regress/lib/libcrypto/evp/evptest.c
+++ b/src/regress/lib/libcrypto/evp/evptest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evptest.c,v 1.13 2023/11/19 13:11:06 tb Exp $ */ 1/* $OpenBSD: evptest.c,v 1.14 2024/02/29 20:04:43 tb Exp $ */
2/* Written by Ben Laurie, 2001 */ 2/* Written by Ben Laurie, 2001 */
3/* 3/*
4 * Copyright (c) 2001 The OpenSSL Project. All rights reserved. 4 * Copyright (c) 2001 The OpenSSL Project. All rights reserved.
@@ -441,7 +441,6 @@ main(int argc, char **argv)
441 CRYPTO_cleanup_all_ex_data(); 441 CRYPTO_cleanup_all_ex_data();
442 ERR_remove_thread_state(NULL); 442 ERR_remove_thread_state(NULL);
443 ERR_free_strings(); 443 ERR_free_strings();
444 CRYPTO_mem_leaks_fp(stderr);
445 444
446 return 0; 445 return 0;
447} 446}