mirror of
https://github.com/reactos/reactos.git
synced 2025-05-13 14:20:31 +00:00
[IPHLPAPI]
Add the missing loop iterator in GetAdaptersAddresses(). This fixes infinite loop, and fixes Firefox 3.6 boot. CORE-9051 #resolve #comment Fixed in r66253 svn path=/trunk/; revision=66253
This commit is contained in:
parent
d3b9c68d22
commit
4a5d15129b
1 changed files with 2 additions and 0 deletions
|
@ -529,6 +529,8 @@ GetAdaptersAddresses(
|
||||||
{
|
{
|
||||||
if (CurrentAA->IfIndex == AddrEntries[j].iae_index)
|
if (CurrentAA->IfIndex == AddrEntries[j].iae_index)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
CurrentAA = CurrentAA->Next;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!CurrentAA)
|
if (!CurrentAA)
|
||||||
|
|
Loading…
Reference in a new issue