mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
Remove an unused variable assignment
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
cda3ae5bd0
commit
b2e8bd7bd5
@ -118,7 +118,7 @@ static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs,
|
||||
X509_check_purpose(x, -1, 0);
|
||||
|
||||
/* If cache is NULL, likely ENOMEM: return immediately */
|
||||
if ((cache = policy_cache_set(x)) == NULL)
|
||||
if (policy_cache_set(x) == NULL)
|
||||
return X509_PCY_TREE_INTERNAL;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user