mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-16 03:50:05 +01:00
bsf: check memory allocations
This commit is contained in:
@@ -47,9 +47,17 @@ AVBitStreamFilterContext *av_bitstream_filter_init(const char *name)
|
||||
if (!strcmp(name, bsf->name)) {
|
||||
AVBitStreamFilterContext *bsfc =
|
||||
av_mallocz(sizeof(AVBitStreamFilterContext));
|
||||
if (!bsfc)
|
||||
return NULL;
|
||||
bsfc->filter = bsf;
|
||||
bsfc->priv_data =
|
||||
bsf->priv_data_size ? av_mallocz(bsf->priv_data_size) : NULL;
|
||||
bsfc->priv_data = NULL;
|
||||
if (bsf->priv_data_size) {
|
||||
bsfc->priv_data = av_mallocz(bsf->priv_data_size);
|
||||
if (!bsfc->priv_data) {
|
||||
av_freep(&bsfc);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
return bsfc;
|
||||
}
|
||||
bsf = bsf->next;
|
||||
|
||||
Reference in New Issue
Block a user