mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Revert "avparser: don't av_malloc(0)."
This hack is no longer needed.
This reverts commit 191e08d113
.
This commit is contained in:
parent
5a36783bc4
commit
85ff339489
@ -58,12 +58,10 @@ AVCodecParserContext *av_parser_init(int codec_id)
|
||||
if (!s)
|
||||
return NULL;
|
||||
s->parser = parser;
|
||||
if (parser->priv_data_size) {
|
||||
s->priv_data = av_mallocz(parser->priv_data_size);
|
||||
if (!s->priv_data) {
|
||||
av_free(s);
|
||||
return NULL;
|
||||
}
|
||||
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