mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Silence possible uninitialized variable warning when compiled with full optimizations
svn path=/trunk/; revision=29989
This commit is contained in:
parent
0f9c8e1dcc
commit
4b146b2b27
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue