]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - apps/dgst.c
There have been a number of complaints from a number of sources that names
[thirdparty/openssl.git] / apps / dgst.c
index 1b56d6ef44167bbe1ac3c2a4f00bab2bf27cce98..3db28d25ca09592cc97063bc0e08207066d38275 100644 (file)
@@ -92,7 +92,7 @@ int MAIN(int argc, char **argv)
 
        apps_startup();
 
-       if ((buf=(unsigned char *)Malloc(BUFSIZE)) == NULL)
+       if ((buf=(unsigned char *)OPENSSL_malloc(BUFSIZE)) == NULL)
                {
                BIO_printf(bio_err,"out of memory\n");
                goto end;
@@ -192,7 +192,7 @@ end:
        if (buf != NULL)
                {
                memset(buf,0,BUFSIZE);
-               Free(buf);
+               OPENSSL_free(buf);
                }
        if (in != NULL) BIO_free(in);
        if (bmd != NULL) BIO_free(bmd);