Commit a4cb54d2 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Fix type of ptr field.



Since "ptr" is used to handle arbitrary other types it should be
void *.

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 4950f888
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -356,7 +356,7 @@ struct evp_pkey_st {
    const EVP_PKEY_ASN1_METHOD *ameth;
    ENGINE *engine;
    union {
        char *ptr;
        void *ptr;
# ifndef OPENSSL_NO_RSA
        struct rsa_st *rsa;     /* RSA */
# endif