Commit 641172c6 authored by Ondrej Zajicek's avatar Ondrej Zajicek
Browse files

Netlink: Fixes uninitialized variable

Thanks to Pavel Tvrdik for the bugfix
parent 538264cf
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -100,11 +100,12 @@ nl_request_dump(int af, int cmd)
  struct {
    struct nlmsghdr nh;
    struct rtgenmsg g;
  } req;
  req.nh.nlmsg_type = cmd;
  req.nh.nlmsg_len = sizeof(req);
  req.nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
  req.g.rtgen_family = af;
  } req = {
    .nh.nlmsg_type = cmd,
    .nh.nlmsg_len = sizeof(req),
    .nh.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP,
    .g.rtgen_family = af
  };
  nl_send(&nl_scan, &req.nh);
}