Added patch to ignore unsupported job object restrictions.

This commit is contained in:
Sebastian Lackner
2015-04-04 22:17:38 +02:00
parent e5a4f11591
commit 9f091b033c
5 changed files with 33 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
From 2e080477fe74a95265befb02dee6bd1c07d712cc Mon Sep 17 00:00:00 2001
From: Andrew Cook <ariscop@gmail.com>
Date: Sat, 4 Apr 2015 18:02:53 +1100
Subject: ntdll: Return STATUS_SUCCESS from SetInformationJobObject
Fixes #38351
---
dlls/ntdll/sync.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/ntdll/sync.c b/dlls/ntdll/sync.c
index 5d1c5f2..8566799 100644
--- a/dlls/ntdll/sync.c
+++ b/dlls/ntdll/sync.c
@@ -728,7 +728,7 @@ NTSTATUS WINAPI NtSetInformationJobObject( HANDLE handle, JOBOBJECTINFOCLASS cla
default:
FIXME( "stub: %p %u %p %u\n", handle, class, info, len );
- return STATUS_NOT_IMPLEMENTED;
+ return STATUS_SUCCESS;
}
return status;
--
2.3.3

View File

@@ -1,6 +1,7 @@
Fixes: [33723] EA Origin needs support for job objects
Fixes: Properly track handle count of wineserver objects
Fixes: Python PIP needs better NtQueryInformationJobObject stub
Fixes: [38351] Ignore unsupported job object restrictions
Depends: kernel32-Console_Handles
Depends: server-OpenProcess
Depends: server-Misc_ACL