commit | 641114d2af312d39ca9bbc2369d18a5823da51c6 | [log] [tgz] |
---|---|---|
author | Jason Gunthorpe <jgg@mellanox.com> | Sun May 12 21:57:57 2019 -0300 |
committer | Jason Gunthorpe <jgg@mellanox.com> | Mon May 13 22:16:38 2019 -0300 |
tree | 201a6f271350522a37f38da975972f72e7a2a07e | |
parent | b79656ed44c6865e17bcd93472ec39488bcc4984 [diff] |
RDMA: Directly cast the sockaddr union to sockaddr gcc 9 now does allocation size tracking and thinks that passing the member of a union and then accessing beyond that member's bounds is an overflow. Instead of using the union member, use the entire union with a cast to get to the sockaddr. gcc will now know that the memory extends the full size of the union. Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>