From 5fc7c5c51344a8cc1fae2cc9077c2c331c1e419a Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Fri, 3 Aug 2001 08:44:51 +0000 Subject: [PATCH] Don't loop forever when trying to skip an out-sequence netlink reply. --- sysdep/linux/netlink/netlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sysdep/linux/netlink/netlink.c b/sysdep/linux/netlink/netlink.c index fd9b3711..d08a1216 100644 --- a/sysdep/linux/netlink/netlink.c +++ b/sysdep/linux/netlink/netlink.c @@ -114,13 +114,13 @@ nl_get_reply(void) if (NLMSG_OK(nl_last_hdr, nl_last_size)) { struct nlmsghdr *h = nl_last_hdr; + nl_last_hdr = NLMSG_NEXT(h, nl_last_size); if (h->nlmsg_seq != nl_sync_seq) { log(L_WARN "nl_get_reply: Ignoring out of sequence netlink packet (%x != %x)", h->nlmsg_seq, nl_sync_seq); continue; } - nl_last_hdr = NLMSG_NEXT(h, nl_last_size); return h; } if (nl_last_size)