Dmitry Timoshkov : activeds: Implement ReallocADsMem.

Alexandre Julliard julliard at winehq.org
Tue Feb 18 16:13:48 CST 2020


Module: wine
Branch: master
Commit: e8960174644ecafc67c9115b76c075c48513d242
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e8960174644ecafc67c9115b76c075c48513d242

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Tue Feb 18 19:33:38 2020 +0800

activeds: Implement ReallocADsMem.

Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/activeds/activeds_main.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/dlls/activeds/activeds_main.c b/dlls/activeds/activeds_main.c
index 72cfd4d83f..e8955ee815 100644
--- a/dlls/activeds/activeds_main.c
+++ b/dlls/activeds/activeds_main.c
@@ -229,8 +229,7 @@ BOOL WINAPI FreeADsMem(LPVOID pMem)
  */
 LPVOID WINAPI ReallocADsMem(LPVOID pOldMem, DWORD cbOld, DWORD cbNew)
 {
-    FIXME("(%p,%d,%d)!stub\n", pOldMem, cbOld, cbNew);
-    return NULL;
+    return HeapReAlloc(GetProcessHeap(), 0, pOldMem, cbNew);
 }
 
 /*****************************************************




More information about the wine-cvs mailing list