avcodec/nvdec: fix return value on error

pull/272/head
Timo Rothenpieler 7 years ago
parent 538de4354d
commit 8bcf5840ea
  1. 4
      libavcodec/nvdec.c

@ -414,8 +414,10 @@ int ff_nvdec_start_frame(AVCodecContext *avctx, AVFrame *frame)
return AVERROR(ENOMEM);
cf->decoder_ref = av_buffer_ref(ctx->decoder_ref);
if (!cf->decoder_ref)
if (!cf->decoder_ref) {
ret = AVERROR(ENOMEM);
goto fail;
}
cf->idx_ref = av_buffer_pool_get(ctx->decoder_pool);
if (!cf->idx_ref) {

Loading…
Cancel
Save