There have been a number of complaints from a number of sources that names
[oweals/openssl.git] / crypto / asn1 / a_dup.c
index 3202a816d0adae53b3ebd774a3892a352d48d346..c3bda58a5d9ec849fcc1cf7cd3df5ebc079a890b 100644 (file)
@@ -71,13 +71,13 @@ char *ASN1_dup(int (*i2d)(), char *(*d2i)(), char *x)
        if (x == NULL) return(NULL);
 
        i=(long)i2d(x,NULL);
-       b=(unsigned char *)Malloc((unsigned int)i+10);
+       b=(unsigned char *)OPENSSL_malloc((unsigned int)i+10);
        if (b == NULL)
                { ASN1err(ASN1_F_ASN1_DUP,ERR_R_MALLOC_FAILURE); return(NULL); }
        p= b;
        i=i2d(x,&p);
        p= b;
        ret=d2i(NULL,&p,i);
-       Free(b);
+       OPENSSL_free(b);
        return(ret);
        }