Piotr Caban : msvcp100: Add _Concurrent_queue_base_v4 destructor implementation.

Alexandre Julliard julliard at winehq.org
Tue Jan 23 16:09:50 CST 2018


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

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Tue Jan 23 17:03:12 2018 +0100

msvcp100: Add _Concurrent_queue_base_v4 destructor implementation.

Signed-off-by: Piotr Caban <piotr at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/msvcp90/misc.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/msvcp90/misc.c b/dlls/msvcp90/misc.c
index ac6de38..c5c0a4f 100644
--- a/dlls/msvcp90/misc.c
+++ b/dlls/msvcp90/misc.c
@@ -1275,7 +1275,8 @@ _Concurrent_queue_base_v4* __thiscall _Concurrent_queue_base_v4_ctor(
 DEFINE_THISCALL_WRAPPER(_Concurrent_queue_base_v4_dtor, 4)
 void __thiscall _Concurrent_queue_base_v4_dtor(_Concurrent_queue_base_v4 *this)
 {
-    FIXME("(%p) stub\n", this);
+    TRACE("(%p)\n", this);
+    MSVCRT_operator_delete(this->data);
 }
 
 DEFINE_THISCALL_WRAPPER(_Concurrent_queue_base_v4_vector_dtor, 8)




More information about the wine-cvs mailing list