mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-23 10:27:51 +02:00
g_inet_socket_address_to_native: properly zero out sockaddr_in6
This commit is contained in:
@@ -200,7 +200,7 @@ g_inet_socket_address_to_native (GSocketAddress *address,
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
memset (sock, 0, sizeof (sock));
|
||||
memset (sock, 0, sizeof (*sock));
|
||||
sock->sin6_family = AF_INET6;
|
||||
sock->sin6_port = g_htons (addr->priv->port);
|
||||
memcpy (&(sock->sin6_addr.s6_addr), g_inet_address_to_bytes (addr->priv->address), sizeof (sock->sin6_addr));
|
||||
|
Reference in New Issue
Block a user