Silence possible uninitialized variable warning when compiled with full optimizations

svn path=/trunk/; revision=29989
This commit is contained in:
Thomas Bluemel 2007-10-30 22:38:43 +00:00
parent 0f9c8e1dcc
commit 4b146b2b27

View file

@ -264,7 +264,7 @@ RtlWalkFrameChain(OUT PVOID *Callers,
IN ULONG Count,
IN ULONG Flags)
{
ULONG_PTR Stack, NewStack, StackBegin, StackEnd;
ULONG_PTR Stack, NewStack, StackBegin, StackEnd = 0;
ULONG Eip;
BOOLEAN Result, StopSearch = FALSE;
ULONG i = 0;