mirror of https://git.ffmpeg.org/ffmpeg.git
ffserver: check return code of avio_alloc_context()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e43f3c8858
commit
cea3c9b281
|
@ -2649,6 +2649,9 @@ static int http_receive_data(HTTPContext *c)
|
||||||
|
|
||||||
pb = avio_alloc_context(c->buffer, c->buffer_end - c->buffer,
|
pb = avio_alloc_context(c->buffer, c->buffer_end - c->buffer,
|
||||||
0, NULL, NULL, NULL, NULL);
|
0, NULL, NULL, NULL, NULL);
|
||||||
|
if (!pb)
|
||||||
|
goto fail;
|
||||||
|
|
||||||
pb->seekable = 0;
|
pb->seekable = 0;
|
||||||
|
|
||||||
s->pb = pb;
|
s->pb = pb;
|
||||||
|
|
Loading…
Reference in New Issue