From: Hermès Bélusca-Maïto Date: Mon, 29 Apr 2019 20:51:35 +0000 (+0200) Subject: [KERNEL32] Addendum to 0e3a0435 (PR #803): always return TRUE in the stub-plemented... X-Git-Tag: 0.4.14-dev~1085 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=77d234b049b96e9c56fc23b91fffe179e2e73b95 [KERNEL32] Addendum to 0e3a0435 (PR #803): always return TRUE in the stub-plemented SetThreadStackGuarantee() to continue satisfying programs that use it. CORE-15989 --- 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; } /*