Commit 9e2dabed authored by Can Wu's avatar Can Wu Committed by Anton Khirnov

avio: check AVIOContext malloc failure

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent 7d4c4394
...@@ -113,6 +113,8 @@ AVIOContext *avio_alloc_context( ...@@ -113,6 +113,8 @@ AVIOContext *avio_alloc_context(
int64_t (*seek)(void *opaque, int64_t offset, int whence)) int64_t (*seek)(void *opaque, int64_t offset, int whence))
{ {
AVIOContext *s = av_mallocz(sizeof(AVIOContext)); AVIOContext *s = av_mallocz(sizeof(AVIOContext));
if (!s)
return NULL;
ffio_init_context(s, buffer, buffer_size, write_flag, opaque, ffio_init_context(s, buffer, buffer_size, write_flag, opaque,
read_packet, write_packet, seek); read_packet, write_packet, seek);
return s; return s;
......
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