mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
[KERNEL32]
- Zero-initialize ActivationContextStack pointer before calling RtlAllocateActivationContextStack(). This allows to get rid of some hacks in the existing ActCtx support in the ntdll loader and actual implementation. svn path=/trunk/; revision=54618
This commit is contained in:
@@ -182,7 +182,7 @@ CreateRemoteThread(HANDLE hProcess,
|
||||
if (hProcess == NtCurrentProcess())
|
||||
{
|
||||
PTEB Teb;
|
||||
PVOID ActivationContextStack;
|
||||
PVOID ActivationContextStack = NULL;
|
||||
THREAD_BASIC_INFORMATION ThreadBasicInfo;
|
||||
#ifndef SXS_SUPPORT_FIXME
|
||||
ACTIVATION_CONTEXT_BASIC_INFORMATION ActivationCtxInfo;
|
||||
|
||||
Reference in New Issue
Block a user