mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
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: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
61c0683080
commit
08ccc474b7
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue