diff options
author | tb <> | 2023-07-22 18:12:55 +0000 |
---|---|---|
committer | tb <> | 2023-07-22 18:12:55 +0000 |
commit | 4244536f1a2e55a7e32d35ed15ac7a8fe4989fd5 (patch) | |
tree | a072168de68605fb9ee41d65a499b25a2000bb16 | |
parent | 4a1818d4f47ef3432864be3ebf457f896326f9bd (diff) | |
download | openbsd-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.c | 3 |
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 | ||
158 | struct doall_cipher { | 157 | struct doall_cipher { |