mirror of
https://github.com/openssl/openssl.git
synced 2025-01-30 14:01:55 +08:00
Fix type of ptr field.
Since "ptr" is used to handle arbitrary other types it should be void *. Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
4950f8885c
commit
a4cb54d257
@ -356,7 +356,7 @@ struct evp_pkey_st {
|
|||||||
const EVP_PKEY_ASN1_METHOD *ameth;
|
const EVP_PKEY_ASN1_METHOD *ameth;
|
||||||
ENGINE *engine;
|
ENGINE *engine;
|
||||||
union {
|
union {
|
||||||
char *ptr;
|
void *ptr;
|
||||||
# ifndef OPENSSL_NO_RSA
|
# ifndef OPENSSL_NO_RSA
|
||||||
struct rsa_st *rsa; /* RSA */
|
struct rsa_st *rsa; /* RSA */
|
||||||
# endif
|
# endif
|
||||||
|
Loading…
Reference in New Issue
Block a user