https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7757ebfbad26c9bd5200f…
commit 7757ebfbad26c9bd5200fa734b2b65de4df4b5ec
Author: Timo Kreuzer <timo.kreuzer(a)reactos.org>
AuthorDate: Fri Jun 17 03:02:24 2016 +0300
Commit: Timo Kreuzer <timo.kreuzer(a)reactos.org>
CommitDate: Thu Feb 2 14:58:08 2023 +0100
[WINESYNC] ucrtbase: Implement _malloc_base.
Signed-off-by: Alex Henrie <alexhenrie24(a)gmail.com>
Signed-off-by: Piotr Caban <piotr(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
wine commit id 5325b8c95112be75f4fa0e2e2e45bcc88434fb5d by Alex Henrie
<alexhenrie24(a)gmail.com>
---
sdk/lib/crt/wine/heap.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/sdk/lib/crt/wine/heap.c b/sdk/lib/crt/wine/heap.c
index 66fcf5b4b82..88db61657c4 100644
--- a/sdk/lib/crt/wine/heap.c
+++ b/sdk/lib/crt/wine/heap.c
@@ -456,6 +456,14 @@ void* CDECL MSVCRT_malloc(MSVCRT_size_t size)
return ret;
}
+/*********************************************************************
+ * _malloc_base (UCRTBASE.@)
+ */
+void* CDECL _malloc_base(MSVCRT_size_t size)
+{
+ return MSVCRT_malloc(size);
+}
+
/*********************************************************************
* realloc (MSVCRT.@)
*/