diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-01-10 17:34:04 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-01-21 09:25:05 +0100 |
commit | d2519e8625f901856bfc915a1dc1f492bbd8b395 (patch) | |
tree | 8ee3b20da81ed695abbc7e601d952a17d9fdbe9e /libavformat/udp.c | |
parent | 93b4cc38b086f27739a333866cc490ed1a15f499 (diff) | |
download | ffmpeg-d2519e8625f901856bfc915a1dc1f492bbd8b395.tar.gz |
lavf/network: log ff_socket() errors to proper contexts rather than NULL
Diffstat (limited to 'libavformat/udp.c')
-rw-r--r-- | libavformat/udp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/udp.c b/libavformat/udp.c index d1195ceca9..83c042d079 100644 --- a/libavformat/udp.c +++ b/libavformat/udp.c @@ -351,9 +351,9 @@ static int udp_socket_create(URLContext *h, struct sockaddr_storage *addr, goto fail; for (res = res0; res; res=res->ai_next) { if (s->udplite_coverage) - udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, IPPROTO_UDPLITE); + udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, IPPROTO_UDPLITE, h); else - udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, 0); + udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, 0, h); if (udp_fd != -1) break; ff_log_net_error(h, AV_LOG_ERROR, "socket"); } |