Commit 5eef4afb authored by Ronald S. Bultje's avatar Ronald S. Bultje Committed by Ronald S. Bultje

avparser: don't av_malloc(0).

Signed-off-by: 's avatarRonald S. Bultje <rsbultje@gmail.com>
parent 79ee8977
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment