There have been a number of complaints from a number of sources that names
[openssl.git] / crypto / x509v3 / v3_genn.c
index 894afa7e036b4f585c630c3edea0d2043ef60849..2de1c4b42867ea524e9537033bd8b949b37d2408 100644 (file)
@@ -211,7 +211,7 @@ void GENERAL_NAME_free(GENERAL_NAME *a)
                break;
 
        }
-       Free (a);
+       OPENSSL_free (a);
 }
 
 /* Now the GeneralNames versions: a SEQUENCE OF GeneralName. These are needed as
@@ -286,6 +286,6 @@ void OTHERNAME_free(OTHERNAME *a)
        if (a == NULL) return;
        ASN1_OBJECT_free(a->type_id);
        ASN1_TYPE_free(a->value);
-       Free (a);
+       OPENSSL_free (a);
 }