1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-13 06:18:17 +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:
Pierre Schweitzer 2015-02-14 08:02:08 +00:00
parent d3b9c68d22
commit 4a5d15129b

View file

@ -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)