Commit 8516a9e9 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

crypt32: Use CRT allocation functions.

parent 1fb28509
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
*/ */
#include <stdarg.h> #include <stdarg.h>
#include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include "windef.h" #include "windef.h"
...@@ -136,17 +137,17 @@ HLRUCACHE WINAPI I_CryptFreeLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1) ...@@ -136,17 +137,17 @@ HLRUCACHE WINAPI I_CryptFreeLruCache(HLRUCACHE h, DWORD unk0, DWORD unk1)
LPVOID WINAPI CryptMemAlloc(ULONG cbSize) LPVOID WINAPI CryptMemAlloc(ULONG cbSize)
{ {
return HeapAlloc(GetProcessHeap(), 0, cbSize); return malloc(cbSize);
} }
LPVOID WINAPI CryptMemRealloc(LPVOID pv, ULONG cbSize) LPVOID WINAPI CryptMemRealloc(LPVOID pv, ULONG cbSize)
{ {
return HeapReAlloc(GetProcessHeap(), 0, pv, cbSize); return realloc(pv, cbSize);
} }
VOID WINAPI CryptMemFree(LPVOID pv) VOID WINAPI CryptMemFree(LPVOID pv)
{ {
HeapFree(GetProcessHeap(), 0, pv); free(pv);
} }
DWORD WINAPI I_CryptAllocTls(void) DWORD WINAPI I_CryptAllocTls(void)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment