Commit 08ccc474 authored by Alexander Drozdov's avatar Alexander Drozdov Committed by Michael Niedermayer

RTMP: fix FD leak in rtmp_open()

If we setup AVIO interrupt callback and it will be returns 1 on socket
timeouts and we try to connect to non-existing streams on some servers
(like nginx-rtmp) we got FD leak.
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 61c06830
......@@ -2670,7 +2670,7 @@ reconnect:
// audio or video packet arrives.
while (!rt->has_audio && !rt->has_video && !rt->received_metadata) {
if ((ret = get_packet(s, 0)) < 0)
return ret;
goto fail;
}
// Either after we have read the metadata or (if there is none) the
......
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