diff options
author | Richard Levitte <levitte@openssl.org> | 2020-11-20 22:21:29 +0100 |
---|---|---|
committer | Pauli <paul.dale@oracle.com> | 2020-11-28 06:28:46 +0100 |
commit | edb7afb8fb8462c005026874211e8879df9a394d (patch) | |
tree | b008c33f339426725afa5b1383a80e882c731c4c /crypto/err/err.c | |
parent | ERR: Drop or deprecate dangerous or overly confusing functions (diff) | |
download | openssl-edb7afb8fb8462c005026874211e8879df9a394d.tar.xz openssl-edb7afb8fb8462c005026874211e8879df9a394d.zip |
ERR: drop err_delete_thread_state() TODO marker
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/13466)
Diffstat (limited to '')
-rw-r--r-- | crypto/err/err.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/err/err.c b/crypto/err/err.c index a4b7b367ae..9528158a08 100644 --- a/crypto/err/err.c +++ b/crypto/err/err.c @@ -593,8 +593,7 @@ const char *ERR_reason_error_string(unsigned long e) return ((p == NULL) ? NULL : p->string); } -/* TODO(3.0): arg ignored for now */ -static void err_delete_thread_state(void *arg) +static void err_delete_thread_state(void *unused) { ERR_STATE *state = CRYPTO_THREAD_get_local(&err_thread_local); if (state == NULL) |