diff --git a/src/xenia/kernel/xthread.cc b/src/xenia/kernel/xthread.cc index 130f4f06aa..ea62eb362c 100644 --- a/src/xenia/kernel/xthread.cc +++ b/src/xenia/kernel/xthread.cc @@ -268,9 +268,6 @@ bool XThread::AllocateStack(uint32_t size) { stack_limit_ = address + (padding / 2); stack_base_ = stack_limit_ + size; - // Initialize the stack with junk - memory()->Fill(stack_alloc_base_, actual_size, 0xBE); - // Setup the guard pages heap->Protect(stack_alloc_base_, padding / 2, kMemoryProtectNoAccess); heap->Protect(stack_base_, padding / 2, kMemoryProtectNoAccess);