Commit 042b272a authored by Martin Storsjö's avatar Martin Storsjö

udp: Properly check for invalid sockets

If stdin has been closed, 0 is a valid socket descriptor.
Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent bb6c1abb
......@@ -200,7 +200,7 @@ static int udp_socket_create(UDPContext *s, struct sockaddr_storage *addr,
goto fail;
for (res = res0; res; res=res->ai_next) {
udp_fd = socket(res->ai_family, SOCK_DGRAM, 0);
if (udp_fd > 0) break;
if (udp_fd != -1) break;
log_net_error(NULL, AV_LOG_ERROR, "socket");
}
......
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