There have been a number of complaints from a number of sources that names
[oweals/openssl.git] / crypto / asn1 / a_gentm.c
index 84062170e8389ca945a885ab0a6904bbb59fc1f8..314479a03dad4481bdfc58d003ee1b635b57bd08 100644 (file)
@@ -212,10 +212,10 @@ ASN1_GENERALIZEDTIME *ASN1_GENERALIZEDTIME_set(ASN1_GENERALIZEDTIME *s,
        p=(char *)s->data;
        if ((p == NULL) || (s->length < 16))
                {
-               p=Malloc(20);
+               p=OPENSSL_malloc(20);
                if (p == NULL) return(NULL);
                if (s->data != NULL)
-                       Free(s->data);
+                       OPENSSL_free(s->data);
                s->data=(unsigned char *)p;
                }