There have been a number of complaints from a number of sources that names
[openssl.git] / crypto / x509v3 / v3_ia5.c
index af3525f33e7213eed0fd81ffcdca36c600be5284..f3bba382693176d066656a7f95ad28f371f164ef 100644 (file)
@@ -82,7 +82,7 @@ static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method,
 {
        char *tmp;
        if(!ia5 || !ia5->length) return NULL;
-       tmp = Malloc(ia5->length + 1);
+       tmp = OPENSSL_malloc(ia5->length + 1);
        memcpy(tmp, ia5->data, ia5->length);
        tmp[ia5->length] = 0;
        return tmp;