Piotr Caban : msvcr110: Fix critical_section_scoped_lock structure size.

Alexandre Julliard julliard at winehq.org
Fri Jun 3 10:03:45 CDT 2016


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

Author: Piotr Caban <piotr at codeweavers.com>
Date:   Fri Jun  3 14:27:29 2016 +0200

msvcr110: Fix critical_section_scoped_lock structure size.

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

---

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

diff --git a/dlls/msvcrt/lock.c b/dlls/msvcrt/lock.c
index e69e1b9..d83425c 100644
--- a/dlls/msvcrt/lock.c
+++ b/dlls/msvcrt/lock.c
@@ -514,7 +514,8 @@ MSVCRT_bool __thiscall critical_section_try_lock_for(
 typedef struct
 {
     critical_section *cs;
-    void *unknown[3];
+    void *unknown[4];
+    int unknown2[2];
 } critical_section_scoped_lock;
 
 /* ??0scoped_lock at critical_section@Concurrency@@QAE at AAV12@@Z */




More information about the wine-cvs mailing list