[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

View File

@@ -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;
}
/*