mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
avparser: don't av_malloc(0).
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
7b9e98173c
commit
191e08d113
@ -58,10 +58,12 @@ AVCodecParserContext *av_parser_init(int codec_id)
|
||||
if (!s)
|
||||
return NULL;
|
||||
s->parser = parser;
|
||||
s->priv_data = av_mallocz(parser->priv_data_size);
|
||||
if (!s->priv_data) {
|
||||
av_free(s);
|
||||
return NULL;
|
||||
if (parser->priv_data_size) {
|
||||
s->priv_data = av_mallocz(parser->priv_data_size);
|
||||
if (!s->priv_data) {
|
||||
av_free(s);
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
if (parser->parser_init) {
|
||||
ret = parser->parser_init(s);
|
||||
|
Loading…
Reference in New Issue
Block a user