diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3/v3_utl.c')
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_utl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_utl.c b/src/lib/libcrypto/x509v3/v3_utl.c index 40f71c71b4..4c2c4a9483 100644 --- a/src/lib/libcrypto/x509v3/v3_utl.c +++ b/src/lib/libcrypto/x509v3/v3_utl.c | |||
@@ -104,7 +104,7 @@ void X509V3_conf_free(CONF_VALUE *conf) | |||
104 | if(conf->name) Free(conf->name); | 104 | if(conf->name) Free(conf->name); |
105 | if(conf->value) Free(conf->value); | 105 | if(conf->value) Free(conf->value); |
106 | if(conf->section) Free(conf->section); | 106 | if(conf->section) Free(conf->section); |
107 | Free((char *)conf); | 107 | Free(conf); |
108 | } | 108 | } |
109 | 109 | ||
110 | int X509V3_add_value_bool(const char *name, int asn1_bool, | 110 | int X509V3_add_value_bool(const char *name, int asn1_bool, |