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/tcp.c | |
parent | 605387582bd35920b83a26dabbe1c0601f425621 (diff) | |
download | ffmpeg-bb9378251a167ef0116f263912e57f715c1e02ac.tar.gz |
network: Use SOCK_CLOEXEC when available
Diffstat (limited to 'libavformat/tcp.c')
-rw-r--r-- | libavformat/tcp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/tcp.c b/libavformat/tcp.c index 67aebdfcb8..68bf9f10b1 100644 --- a/libavformat/tcp.c +++ b/libavformat/tcp.c @@ -84,7 +84,9 @@ static int tcp_open(URLContext *h, const char *uri, int flags) cur_ai = ai; restart: - fd = socket(cur_ai->ai_family, cur_ai->ai_socktype, cur_ai->ai_protocol); + fd = ff_socket(cur_ai->ai_family, + cur_ai->ai_socktype, + cur_ai->ai_protocol); if (fd < 0) { ret = ff_neterrno(); goto fail; |