From b2fd0e86ccf3b34fe5c4e9d067d9bbe42776cc50 Mon Sep 17 00:00:00 2001 From: Jeff Becker Date: Tue, 16 Jul 2019 15:16:49 -0400 Subject: [PATCH] fix network interface iteration infinite loop --- llarp/net/net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llarp/net/net.cpp b/llarp/net/net.cpp index 1d4b6d88b..010797d3c 100644 --- a/llarp/net/net.cpp +++ b/llarp/net/net.cpp @@ -819,7 +819,7 @@ namespace llarp while(i) { visit(i); - i = ifa->ifa_next; + i = i->ifa_next; } if(ifa)