From f04c2a84ad2a017a778fa2f23719318acb9ca89f Mon Sep 17 00:00:00 2001 From: Daiki Ueno Date: Fri, 20 Jul 2018 13:11:36 +0200 Subject: common, p11-kit, trust: Use pthread_once only when necessary If the ELF constructor is usable, we don't really need the once-init function because it is guaranteed that the code runs only once in the constructor. --- trust/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'trust') diff --git a/trust/module.c b/trust/module.c index 82a3fdf..fc67a4d 100644 --- a/trust/module.c +++ b/trust/module.c @@ -1845,7 +1845,7 @@ __attribute__((constructor)) void p11_trust_module_init (void) { - p11_library_init_once (); + p11_library_init (); } #ifdef __GNUC__ -- cgit v1.1