There have been a number of complaints from a number of sources that names
[openssl.git] / crypto / asn1 / i2d_dsap.c
index 4021123ba3f34cf3f7cad3f0ee8293740c9622ae..157fb43893fcf7f7f4603b0874b43e93e0686715 100644 (file)
@@ -94,7 +94,7 @@ int i2d_DSAparams(DSA *a, unsigned char **pp)
        ASN1_put_object(&p,1,tot,V_ASN1_SEQUENCE,V_ASN1_UNIVERSAL);
 
        bs.type=V_ASN1_INTEGER;
-       bs.data=(unsigned char *)Malloc(max+4);
+       bs.data=(unsigned char *)OPENSSL_malloc(max+4);
        if (bs.data == NULL)
                {
                ASN1err(ASN1_F_I2D_DSAPARAMS,ERR_R_MALLOC_FAILURE);
@@ -107,7 +107,7 @@ int i2d_DSAparams(DSA *a, unsigned char **pp)
                bs.length=BN_bn2bin(num[i],bs.data);
                i2d_ASN1_INTEGER(&bs,&p);
                }
-       Free(bs.data);
+       OPENSSL_free(bs.data);
        ret=t;
 err:
        *pp=p;