[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)
break;
CurrentAA = CurrentAA->Next;
}
if (!CurrentAA)