]> git.ipfire.org Git - thirdparty/openssl.git/commit
Fix an issue in provider_activate_fallbacks()
authorMatt Caswell <matt@openssl.org>
Mon, 11 Jan 2021 17:02:01 +0000 (17:02 +0000)
committerMatt Caswell <matt@openssl.org>
Thu, 14 Jan 2021 17:30:46 +0000 (17:30 +0000)
commit7dd2cb569358591bb832af66fdabd6a6c580c1d4
tree47703a558c054c0997bd6d1059e0b96a55d9784a
parentb457c8f514130d3b92de574620d38c1058eb7b35
Fix an issue in provider_activate_fallbacks()

The above function was running while holding the store lock with a read
lock. Unfortunately it actually modifies the store, so a write lock is
required instead.

Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/13660)
crypto/provider_core.c