From a16d21744df686a7c005d1f129915d9083476e14 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 26 Apr 2021 11:35:17 +0100 Subject: Add the ability for ex_data to have a priority Where an object has multiple ex_data associated with it, then we free that ex_data in order of priority (high priority first). Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14991) --- crypto/property/defn_cache.c | 1 + 1 file changed, 1 insertion(+) (limited to 'crypto/property/defn_cache.c') diff --git a/crypto/property/defn_cache.c b/crypto/property/defn_cache.c index 6c6503bdcc..8007599526 100644 --- a/crypto/property/defn_cache.c +++ b/crypto/property/defn_cache.c @@ -63,6 +63,7 @@ static void *property_defns_new(OSSL_LIB_CTX *ctx) { } static const OSSL_LIB_CTX_METHOD property_defns_method = { + OSSL_LIB_CTX_METHOD_DEFAULT_PRIORITY, property_defns_new, property_defns_free, }; -- cgit v1.2.1