https://git.reactos.org/?p=reactos.git;a=commitdiff;h=6360937cd4248bef7a3b2eb8df0ca67b9a772079

commit 6360937cd4248bef7a3b2eb8df0ca67b9a772079
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Fri Jun 17 03:02:26 2016 +0300
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Thu Feb 2 14:58:08 2023 +0100

    [WINESYNC] ucrtbase: Implement _realloc_base.
    
    Signed-off-by: Alex Henrie <[email protected]>
    Signed-off-by: Piotr Caban <[email protected]>
    Signed-off-by: Alexandre Julliard <[email protected]>
    
    wine commit id 8a69c5d81f8deb472df18a8e16e57efef2eb9a9a by Alex Henrie 
<[email protected]>
---
 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 ae5e8fa31ee..b773e00ddea 100644
--- a/sdk/lib/crt/wine/heap.c
+++ b/sdk/lib/crt/wine/heap.c
@@ -483,6 +483,14 @@ void* CDECL MSVCRT_realloc(void* ptr, MSVCRT_size_t size)
   return NULL;
 }
 
+/*********************************************************************
+ *             _realloc_base (UCRTBASE.@)
+ */
+void* CDECL _realloc_base(void* ptr, MSVCRT_size_t size)
+{
+  return MSVCRT_realloc(ptr, size);
+}
+
 /*********************************************************************
  * _recalloc (MSVCR100.@)
  */

Reply via email to