mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
zmbv: check av_realloc() return values and avoid memleaks on ENOMEM
This commit is contained in:
parent
d4eeadcbbf
commit
cb0b284381
@ -404,6 +404,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
|
||||
int zret = Z_OK; // Zlib return code
|
||||
int len = buf_size;
|
||||
int hi_ver, lo_ver;
|
||||
uint8_t *tmp;
|
||||
|
||||
if (c->pic.data[0])
|
||||
avctx->release_buffer(avctx, &c->pic);
|
||||
@ -485,8 +486,14 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac
|
||||
return -1;
|
||||
}
|
||||
|
||||
c->cur = av_realloc(c->cur, avctx->width * avctx->height * (c->bpp / 8));
|
||||
c->prev = av_realloc(c->prev, avctx->width * avctx->height * (c->bpp / 8));
|
||||
tmp = av_realloc(c->cur, avctx->width * avctx->height * (c->bpp / 8));
|
||||
if (!tmp)
|
||||
return AVERROR(ENOMEM);
|
||||
c->cur = tmp;
|
||||
tmp = av_realloc(c->prev, avctx->width * avctx->height * (c->bpp / 8));
|
||||
if (!tmp)
|
||||
return AVERROR(ENOMEM);
|
||||
c->prev = tmp;
|
||||
c->bx = (c->width + c->bw - 1) / c->bw;
|
||||
c->by = (c->height+ c->bh - 1) / c->bh;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user