Commit b2e8bd7b authored by Matt Caswell's avatar Matt Caswell
Browse files

Remove an unused variable assignment



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent cda3ae5b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }