Commit 30b35035 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix unitialized interface for old-style IPv4 joins

parent 30f4531b
...@@ -213,7 +213,7 @@ net_IPv4Join (vlc_object_t *obj, int fd, ...@@ -213,7 +213,7 @@ net_IPv4Join (vlc_object_t *obj, int fd,
# endif # endif
} opt; } opt;
int cmd; int cmd;
struct in_addr id; struct in_addr id = { .s_addr = INADDR_ANY };
socklen_t optlen; socklen_t optlen;
/* Multicast interface IPv4 address */ /* Multicast interface IPv4 address */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment