mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-08 16:54:03 +02:00
mmsh: Properly clean up if the second ffurl_alloc failed
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
02490bf358
commit
9c6777bd93
@ -262,9 +262,9 @@ static int mmsh_open(URLContext *h, const char *uri, int flags)
|
|||||||
// close the socket and then reopen it for sending the second play request.
|
// close the socket and then reopen it for sending the second play request.
|
||||||
ffurl_close(mms->mms_hd);
|
ffurl_close(mms->mms_hd);
|
||||||
memset(headers, 0, sizeof(headers));
|
memset(headers, 0, sizeof(headers));
|
||||||
if (ffurl_alloc(&mms->mms_hd, httpname, AVIO_FLAG_READ,
|
if ((err = ffurl_alloc(&mms->mms_hd, httpname, AVIO_FLAG_READ,
|
||||||
&h->interrupt_callback) < 0) {
|
&h->interrupt_callback)) < 0) {
|
||||||
return AVERROR(EIO);
|
goto fail;
|
||||||
}
|
}
|
||||||
stream_selection = av_mallocz(mms->stream_num * 19 + 1);
|
stream_selection = av_mallocz(mms->stream_num * 19 + 1);
|
||||||
if (!stream_selection)
|
if (!stream_selection)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user