We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
addrTo_in_addr
Describe the bug
thom311/libnl@8d40d9e
before this commit netlink socket may return address with zero size.
bool addrTo_in_addr(struct nl_addr* ra, struct in_addr& addr) { if (ra) { if (::nl_addr_get_family(ra) == AF_INET) { void* ba = ::nl_addr_get_binary_addr(ra); if (ba) { addr = *reinterpret_cast<struct in_addr*>(ba); // access invalid memory return true; } } } return false; }
Describe the system beegfs: master libnl: libnl-route 3.4.0-1 ubuntu0.1
libnl-route 3.4.0-1 ubuntu0.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
before this commit netlink socket may return address with zero size.
Describe the system
beegfs: master
libnl:
libnl-route 3.4.0-1 ubuntu0.1
The text was updated successfully, but these errors were encountered: