mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Silence possible uninitialized variable warning when compiled with full optimizations
svn path=/trunk/; revision=29989
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user