Change PKCS#7 test data to take account of removal of
[openssl.git] / crypto / mem.c
index 5890e5577406c0bf276e13bf16ad9f4c12c29f17..3b5b2bbc681452586e6426b59520a399e25be3a4 100644 (file)
@@ -252,8 +252,8 @@ void CRYPTO_free(void *str)
 
 void *CRYPTO_remalloc(void *a, int num, const char *file, int line)
        {
-       if (a != NULL) Free(a);
-       a=(char *)Malloc(num);
+       if (a != NULL) OPENSSL_free(a);
+       a=(char *)OPENSSL_malloc(num);
        return(a);
        }