avformat/mov: Fix mixed declaration and statement warning

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-01-06 19:51:38 +01:00
parent 8327bef1c9
commit db27f50e06
1 changed files with 2 additions and 1 deletions

View File

@ -214,10 +214,11 @@ static int mov_read_covr(MOVContext *c, AVIOContext *pb, int type, int len)
static int mov_metadata_raw(MOVContext *c, AVIOContext *pb, static int mov_metadata_raw(MOVContext *c, AVIOContext *pb,
unsigned len, const char *key) unsigned len, const char *key)
{ {
char *value;
// Check for overflow. // Check for overflow.
if (len >= INT_MAX) if (len >= INT_MAX)
return AVERROR(EINVAL); return AVERROR(EINVAL);
char *value = av_malloc(len + 1); value = av_malloc(len + 1);
if (!value) if (!value)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
avio_read(pb, value, len); avio_read(pb, value, len);