Commit b4579a29 authored by Michael Niedermayer's avatar Michael Niedermayer

mmsh: dont close context on seeking failure

Fixes Ticket2581
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent c7755c34
...@@ -309,14 +309,16 @@ static int mmsh_open_internal(URLContext *h, const char *uri, int flags, int tim ...@@ -309,14 +309,16 @@ static int mmsh_open_internal(URLContext *h, const char *uri, int flags, int tim
return 0; return 0;
fail: fail:
av_freep(&stream_selection); av_freep(&stream_selection);
mmsh_close(h);
av_dlog(NULL, "Connection failed with error %d\n", err); av_dlog(NULL, "Connection failed with error %d\n", err);
return err; return err;
} }
static int mmsh_open(URLContext *h, const char *uri, int flags) 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) static int handle_chunk_type(MMSHContext *mmsh)
......
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