There have been a number of complaints from a number of sources that names
[openssl.git] / crypto / asn1 / a_utctm.c
index e3e5c45906ed19408ee21e583b208a95ba5c80e9..2ee572e2281aad2e7c9cad76379e7608ebc680f8 100644 (file)
@@ -248,10 +248,10 @@ ASN1_UTCTIME *ASN1_UTCTIME_set(ASN1_UTCTIME *s, time_t t)
        p=(char *)s->data;
        if ((p == NULL) || (s->length < 14))
                {
-               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;
                }