From edb7afb8fb8462c005026874211e8879df9a394d Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 20 Nov 2020 22:21:29 +0100 Subject: [PATCH] ERR: drop err_delete_thread_state() TODO marker Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/13466) --- crypto/err/err.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crypto/err/err.c b/crypto/err/err.c index a4b7b367ae9..9528158a080 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) -- 2.47.2