summaryrefslogtreecommitdiff
path: root/libavformat/udp.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-06 15:39:59 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-06 15:40:05 +0200
commit253976720653f02595dee5edb85a8a9730ba0ae3 (patch)
tree902dccc537e2f279eb76031647e37648321d78c1 /libavformat/udp.c
parent8d06ce79411fc99d200ddc559bf1dd1f1434a13c (diff)
parentbb9378251a167ef0116f263912e57f715c1e02ac (diff)
Merge commit 'bb9378251a167ef0116f263912e57f715c1e02ac'
* commit 'bb9378251a167ef0116f263912e57f715c1e02ac': network: Use SOCK_CLOEXEC when available Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r--libavformat/udp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c
index 9c45254571..3c0d6bf012 100644
--- a/libavformat/udp.c
+++ b/libavformat/udp.c
@@ -326,7 +326,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");
}