CVSROOT: /cvs Module name: src Changes by: js...@cvs.openbsd.org 2024/10/11 06:27:24
Modified files: lib/libcrypto/err: err.c Log message: Remove pointless locking from err_build_SYS_str_reasons(). err_build_SYS_str_reasons() is only called during initialisation, under pthread_once(). As such, there is no need to grab CRYPTO_LOCK_ERR or check for reentrant calls. ok tb@