From eb1ef783f6a82c784f791880fd5e5ada5fa00bb5 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sat, 24 Jan 2015 14:25:53 +0100 Subject: [PATCH] luci-lib-ip: fix netlink receiving in link() Signed-off-by: Jo-Philipp Wich --- libs/luci-lib-ip/src/ip.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/luci-lib-ip/src/ip.c b/libs/luci-lib-ip/src/ip.c index c799419e5..5bff693f6 100644 --- a/libs/luci-lib-ip/src/ip.c +++ b/libs/luci-lib-ip/src/ip.c @@ -1270,7 +1270,9 @@ static int link_get(lua_State *L) lua_newtable(L); nl_send_auto_complete(sock, msg); - nl_recvmsgs(sock, cb); + + while (st.pending > 0) + nl_recvmsgs(sock, cb); nlmsg_free(msg); nl_cb_put(cb); -- 2.11.0