Merge pull request #714 from majestrate/fix-net-if-iterate

fix network interface iteration infinite loop
pull/716/head
Jeff 5 years ago committed by GitHub
commit abf99df93b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -819,7 +819,7 @@ namespace llarp
while(i)
{
visit(i);
i = ifa->ifa_next;
i = i->ifa_next;
}
if(ifa)

Loading…
Cancel
Save