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:
Peter Maydell 2021-08-13 16:05:05 +01:00
parent fdcdf54d1e
commit a8ca0033c2

View File

@ -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;