summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortb <>2023-07-22 18:12:55 +0000
committertb <>2023-07-22 18:12:55 +0000
commit4244536f1a2e55a7e32d35ed15ac7a8fe4989fd5 (patch)
treea072168de68605fb9ee41d65a499b25a2000bb16
parent4a1818d4f47ef3432864be3ebf457f896326f9bd (diff)
downloadopenbsd-4244536f1a2e55a7e32d35ed15ac7a8fe4989fd5.tar.gz
openbsd-4244536f1a2e55a7e32d35ed15ac7a8fe4989fd5.tar.bz2
openbsd-4244536f1a2e55a7e32d35ed15ac7a8fe4989fd5.zip
No need to call OBJ_sigid_free() in EVP_cleanup() anymore.
ok jsing
-rw-r--r--src/lib/libcrypto/evp/names.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/names.c b/src/lib/libcrypto/evp/names.c
index f7864f5958..4931c92e26 100644
--- a/src/lib/libcrypto/evp/names.c
+++ b/src/lib/libcrypto/evp/names.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: names.c,v 1.19 2023/07/07 19:37:54 beck Exp $ */ 1/* $OpenBSD: names.c,v 1.20 2023/07/22 18:12:55 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -152,7 +152,6 @@ EVP_cleanup(void)
152 obj_cleanup_defer = 0; 152 obj_cleanup_defer = 0;
153 OBJ_cleanup(); 153 OBJ_cleanup();
154 } 154 }
155 OBJ_sigid_free();
156} 155}
157 156
158struct doall_cipher { 157struct doall_cipher {