Commit a887c87c authored by Martin Storsjö's avatar Martin Storsjö

udp: Print an error message if bind fails

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 37cc8600
......@@ -387,8 +387,10 @@ static int udp_open(URLContext *h, const char *uri, int flags)
}
/* bind to the local address if not multicast or if the multicast
* bind failed */
if (bind_ret < 0 && bind(udp_fd,(struct sockaddr *)&my_addr, len) < 0)
if (bind_ret < 0 && bind(udp_fd,(struct sockaddr *)&my_addr, len) < 0) {
av_log(h, AV_LOG_ERROR, "bind failed: %s\n", strerror(errno));
goto fail;
}
len = sizeof(my_addr);
getsockname(udp_fd, (struct sockaddr *)&my_addr, &len);
......
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