From 77d234b049b96e9c56fc23b91fffe179e2e73b95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Mon, 29 Apr 2019 22:51:35 +0200 Subject: [PATCH] [KERNEL32] Addendum to 0e3a0435 (PR #803): always return TRUE in the stub-plemented SetThreadStackGuarantee() to continue satisfying programs that use it. CORE-15989 --- dll/win32/kernel32/client/thread.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dll/win32/kernel32/client/thread.c b/dll/win32/kernel32/client/thread.c index 1a593ba2ddf..e64cd7230d3 100644 --- a/dll/win32/kernel32/client/thread.c +++ b/dll/win32/kernel32/client/thread.c @@ -985,8 +985,8 @@ SetThreadStackGuarantee(IN OUT PULONG StackSizeInBytes) // FIXME: Unimplemented! UNIMPLEMENTED_ONCE; - // return TRUE; - return FALSE; + // Temporary HACK for supporting applications! + return TRUE; // FALSE; } /*