mirror of
https://github.com/xemu-project/xemu.git
synced 2025-01-22 03:45:30 +00:00
tests/qtest/ipmi-bt-test: Zero-initialize sockaddr struct
Zero-initialize the sockaddr_in struct that we're about to fill in and pass to bind(), to ensure we don't leave possible implementation-defined extension fields as uninitialized garbage. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Corey Minyard <cminyard@mvista.com> Acked-by: Thomas Huth <thuth@redhat.com> Message-id: 20210813150506.7768-4-peter.maydell@linaro.org
This commit is contained in:
parent
fdcdf54d1e
commit
a8ca0033c2
@ -378,7 +378,7 @@ static void test_enable_irq(void)
|
||||
*/
|
||||
static void open_socket(void)
|
||||
{
|
||||
struct sockaddr_in myaddr;
|
||||
struct sockaddr_in myaddr = {};
|
||||
socklen_t addrlen;
|
||||
|
||||
myaddr.sin_family = AF_INET;
|
||||
|
Loading…
x
Reference in New Issue
Block a user