diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2013-08-03 15:00:11 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2013-08-05 16:13:36 +0200 |
commit | bb9378251a167ef0116f263912e57f715c1e02ac (patch) | |
tree | 5accf9f37eb3d899a816a1c918877a5305b4f4cb /libavformat/udp.c | |
parent | 605387582bd35920b83a26dabbe1c0601f425621 (diff) | |
download | ffmpeg-bb9378251a167ef0116f263912e57f715c1e02ac.tar.gz |
network: Use SOCK_CLOEXEC when available
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r-- | libavformat/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index 66399b7093..bfa8cf25e8 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -270,7 +270,7 @@ static int udp_socket_create(UDPContext *s, struct sockaddr_storage *addr, if (res0 == 0) goto fail; for (res = res0; res; res=res->ai_next) { - udp_fd = socket(res->ai_family, SOCK_DGRAM, 0); + udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, 0); if (udp_fd != -1) break; log_net_error(NULL, AV_LOG_ERROR, "socket"); } |