Sebastian Lackner : ntdll: Don' t warn about unsupported environment version 3.

Alexandre Julliard julliard at wine.codeweavers.com
Thu Mar 31 11:42:56 CDT 2016


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

Author: Sebastian Lackner <sebastian at fds-team.de>
Date:   Thu Mar 31 04:53:51 2016 +0200

ntdll: Don't warn about unsupported environment version 3.

Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/ntdll/threadpool.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/threadpool.c b/dlls/ntdll/threadpool.c
index 9c98040..781750b 100644
--- a/dlls/ntdll/threadpool.c
+++ b/dlls/ntdll/threadpool.c
@@ -1845,7 +1845,7 @@ static void tp_object_initialize( struct threadpool_object *object, struct threa
 
     if (environment)
     {
-        if (environment->Version != 1)
+        if (environment->Version != 1 && environment->Version != 3)
             FIXME( "unsupported environment version %u\n", environment->Version );
 
         object->group = impl_from_TP_CLEANUP_GROUP( environment->CleanupGroup );




More information about the wine-cvs mailing list