From aeb2de1c82f95b74e184992a10523606f4b341fa Mon Sep 17 00:00:00 2001 From: Martin Storsjo Date: Mon, 24 Jan 2011 09:49:03 +0000 Subject: [PATCH] rtsp: Use ff_rtsp_undo_setup in the cleanup code in ff_rtsp_make_request Signed-off-by: Janne Grunau --- libavformat/rtsp.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index dcceb68a25..dddaaf4237 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1271,12 +1271,7 @@ int ff_rtsp_make_setup_request(AVFormatContext *s, const char *host, int port, return 0; fail: - for (i = 0; i < rt->nb_rtsp_streams; i++) { - if (rt->rtsp_streams[i]->rtp_handle) { - url_close(rt->rtsp_streams[i]->rtp_handle); - rt->rtsp_streams[i]->rtp_handle = NULL; - } - } + ff_rtsp_undo_setup(s); return err; }