[FFmpeg-cvslog] lavc/bink: Chech for malloc failure
James Almer
git at videolan.org
Mon Apr 8 03:55:33 CEST 2013
ffmpeg | branch: release/0.10 | James Almer <jamrial at gmail.com> | Tue Feb 5 22:34:29 2013 -0300| [0b8198346150192579a6b9c2b3c8a7822f4bf5cb] | committer: James Almer
lavc/bink: Chech for malloc failure
Based on commit 8ab2173ed141aa2c3336be7f9880340dfb8dcf5e
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0b8198346150192579a6b9c2b3c8a7822f4bf5cb
---
libavcodec/bink.c | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/libavcodec/bink.c b/libavcodec/bink.c
index 39c94a0..16e3fd6 100644
--- a/libavcodec/bink.c
+++ b/libavcodec/bink.c
@@ -167,7 +167,7 @@ static void init_lengths(BinkContext *c, int width, int bw)
*
* @param c decoder context
*/
-static av_cold void init_bundles(BinkContext *c)
+static av_cold int init_bundles(BinkContext *c)
{
int bw, bh, blocks;
int i;
@@ -178,8 +178,12 @@ static av_cold void init_bundles(BinkContext *c)
for (i = 0; i < BINKB_NB_SRC; i++) {
c->bundle[i].data = av_malloc(blocks * 64);
+ if (!c->bundle[i].data)
+ return AVERROR(ENOMEM);
c->bundle[i].data_end = c->bundle[i].data + blocks * 64;
}
+
+ return 0;
}
/**
@@ -1266,7 +1270,7 @@ static av_cold int decode_init(AVCodecContext *avctx)
BinkContext * const c = avctx->priv_data;
static VLC_TYPE table[16 * 128][2];
static int binkb_initialised = 0;
- int i;
+ int i, ret;
int flags;
c->version = avctx->codec_tag >> 24;
@@ -1301,7 +1305,10 @@ static av_cold int decode_init(AVCodecContext *avctx)
dsputil_init(&c->dsp, avctx);
ff_binkdsp_init(&c->bdsp);
- init_bundles(c);
+ if ((ret = init_bundles(c)) < 0) {
+ free_bundles(c);
+ return ret;
+ }
if (c->version == 'b') {
if (!binkb_initialised) {
More information about the ffmpeg-cvslog
mailing list