* io.c (print_iovec): Pass the actual length to decode_netlink
instead of the original length.
* NEWS: Mention this fix.
* Bug fixes
* Fixed decoding of flags argument of preadv2 and pwritev2 syscalls on x32.
* Fixed the number of arguments and tracing flags of alpha specific syscalls.
+ * Fixed decoding of netlink messages received within struct msghdr.
Noteworthy changes in release 4.16 (2017-02-14)
===============================================
len = c->data_size;
if (c->data_size != (kernel_ulong_t) -1)
c->data_size -= len;
- decode_netlink(tcp, iov[0], iov[1]);
+ decode_netlink(tcp, iov[0], len);
break;
default:
printaddr(iov[0]);