mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:12:58 +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 Count,
|
||||||
IN ULONG Flags)
|
IN ULONG Flags)
|
||||||
{
|
{
|
||||||
ULONG_PTR Stack, NewStack, StackBegin, StackEnd;
|
ULONG_PTR Stack, NewStack, StackBegin, StackEnd = 0;
|
||||||
ULONG Eip;
|
ULONG Eip;
|
||||||
BOOLEAN Result, StopSearch = FALSE;
|
BOOLEAN Result, StopSearch = FALSE;
|
||||||
ULONG i = 0;
|
ULONG i = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue