There have been a number of complaints from a number of sources that names
[oweals/openssl.git] / crypto / des / des.c
index 0197489c9ed422f08ccc6de5a4895b7fd87f8402..215d7413c0766bd13ecbe7a02d02fe7a7cd0b5df 100644 (file)
@@ -374,8 +374,8 @@ void doencryption(void)
 
        if (buf == NULL)
                {
-               if (    (( buf=Malloc(BUFSIZE+8)) == NULL) ||
-                       ((obuf=Malloc(BUFSIZE+8)) == NULL))
+               if (    (( buf=OPENSSL_malloc(BUFSIZE+8)) == NULL) ||
+                       ((obuf=OPENSSL_malloc(BUFSIZE+8)) == NULL))
                        {
                        fputs("Not enough memory\n",stderr);
                        Exit=10;