diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-06-17 22:03:36 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-07-07 21:42:10 +0200 |
commit | 40c521aec0edb47f6d6cd59f96812248e152dfdc (patch) | |
tree | 85e5b9c1fb25b81762856186965325ea96fbbaa5 | |
parent | e68b62a014b680d32fe9e2aee5c3bc4246a70ee9 (diff) | |
download | ffmpeg-40c521aec0edb47f6d6cd59f96812248e152dfdc.tar.gz |
mmsh: dont close context on seeking failure
Fixes Ticket2581
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit b4579a29c75e2968ede2ad002dd4a495dbfc883d)
-rw-r--r-- | libavformat/mmsh.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavformat/mmsh.c b/libavformat/mmsh.c index d6e398200f..c71ecd67ef 100644 --- a/libavformat/mmsh.c +++ b/libavformat/mmsh.c @@ -309,14 +309,16 @@ static int mmsh_open_internal(URLContext *h, const char *uri, int flags, int tim return 0; fail: av_freep(&stream_selection); - mmsh_close(h); av_dlog(NULL, "Connection failed with error %d\n", err); return err; } static int mmsh_open(URLContext *h, const char *uri, int flags) { - return mmsh_open_internal(h, uri, flags, 0, 0); + int ret = mmsh_open_internal(h, uri, flags, 0, 0); + if (ret < 0) + mmsh_close(h); + return ret; } static int handle_chunk_type(MMSHContext *mmsh) |