From 0909f3edbdfaf480ba720f59f3743f5d95e3c059 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 27 Jul 2013 20:21:33 +0000 Subject: [PATCH] zmbv: return meaningful error code Signed-off-by: Paul B Mahol --- libavcodec/zmbv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/zmbv.c b/libavcodec/zmbv.c index 7f3b326dd1..215e87ae63 100644 --- a/libavcodec/zmbv.c +++ b/libavcodec/zmbv.c @@ -493,7 +493,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac c->bx = (c->width + c->bw - 1) / c->bw; c->by = (c->height+ c->bh - 1) / c->bh; if (!c->cur || !c->prev) - return -1; + return AVERROR(ENOMEM); memset(c->cur, 0, avctx->width * avctx->height * (c->bpp / 8)); memset(c->prev, 0, avctx->width * avctx->height * (c->bpp / 8)); c->decode_intra= decode_intra;