diff options
Diffstat (limited to 'libavcodec/sunrast.c')
-rw-r--r-- | libavcodec/sunrast.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavcodec/sunrast.c b/libavcodec/sunrast.c index 533ff62367..6ea8fbccbc 100644 --- a/libavcodec/sunrast.c +++ b/libavcodec/sunrast.c @@ -102,10 +102,8 @@ static int sunrast_decode_frame(AVCodecContext *avctx, void *data, if (w != avctx->width || h != avctx->height) avcodec_set_dimensions(avctx, w, h); - if ((ret = ff_get_buffer(avctx, p, 0)) < 0) { - av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n"); + if ((ret = ff_get_buffer(avctx, p, 0)) < 0) return ret; - } p->pict_type = AV_PICTURE_TYPE_I; |