diff --git a/libavcodec/h264.c b/libavcodec/h264.c index cfe627fbe7efd8a5b1025dd133d0e4ec99d6a2bb..ed1365d1a71e490c6e5bf72472e9f356eab8f14f 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -473,7 +473,7 @@ int ff_h264_alloc_tables(H264Context *h) if (!h->DPB) { h->DPB = av_mallocz_array(H264_MAX_PICTURE_COUNT, sizeof(*h->DPB)); if (!h->DPB) - return AVERROR(ENOMEM); + goto fail; for (i = 0; i < H264_MAX_PICTURE_COUNT; i++) av_frame_unref(&h->DPB[i].f); av_frame_unref(&h->cur_pic.f);