luci-lib-ip: fix netlink receiving in link()
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 24 Jan 2015 13:25:53 +0000 (14:25 +0100)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 24 Jan 2015 13:25:53 +0000 (14:25 +0100)
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
libs/luci-lib-ip/src/ip.c

index c799419..5bff693 100644 (file)
@@ -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);