[KERNEL32] Addendum to 0e3a0435 (PR #803): always return TRUE in the stub-plemented SetThreadStackGuarantee() to continue satisfying programs that use it. CORE-15989

This commit is contained in:
Hermès Bélusca-Maïto 2019-04-29 22:51:35 +02:00
parent f681bad246
commit 77d234b049
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -985,8 +985,8 @@ SetThreadStackGuarantee(IN OUT PULONG StackSizeInBytes)
// FIXME: Unimplemented! // FIXME: Unimplemented!
UNIMPLEMENTED_ONCE; UNIMPLEMENTED_ONCE;
// return TRUE; // Temporary HACK for supporting applications!
return FALSE; return TRUE; // FALSE;
} }
/* /*