avparser: don't av_malloc(0).

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Ronald S. Bultje
2011-04-26 18:46:08 -07:00
committed by Michael Niedermayer
parent 7b9e98173c
commit 191e08d113

View File

@@ -58,11 +58,13 @@ AVCodecParserContext *av_parser_init(int codec_id)
if (!s) if (!s)
return NULL; return NULL;
s->parser = parser; s->parser = parser;
if (parser->priv_data_size) {
s->priv_data = av_mallocz(parser->priv_data_size); s->priv_data = av_mallocz(parser->priv_data_size);
if (!s->priv_data) { if (!s->priv_data) {
av_free(s); av_free(s);
return NULL; return NULL;
} }
}
if (parser->parser_init) { if (parser->parser_init) {
ret = parser->parser_init(s); ret = parser->parser_init(s);
if (ret != 0) { if (ret != 0) {