CLA: trivial
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/25826)
return 0;
stmp.type = X509_LU_NONE;
- stmp.data.ptr = NULL;
+ stmp.data.x509 = NULL;
if (!x509_store_read_lock(store))
return 0;
return -1;
ret->type = tmp->type;
- ret->data.ptr = tmp->data.ptr;
+ ret->data = tmp->data;
return 1;
}
/* one of the above types */
X509_LOOKUP_TYPE type;
union {
- char *ptr;
X509 *x509;
X509_CRL *crl;
- EVP_PKEY *pkey;
} data;
};