[FFmpeg-cvslog] avformat/mov: Fix mixed declaration and statement warning
Michael Niedermayer
git at videolan.org
Tue Jan 6 19:58:28 CET 2015
ffmpeg | branch: release/2.3 | Michael Niedermayer <michaelni at gmx.at> | Tue Jan 6 19:51:38 2015 +0100| [db27f50e0658e91758e8a17fdcf390e6bc93c1d2] | committer: Michael Niedermayer
avformat/mov: Fix mixed declaration and statement warning
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=db27f50e0658e91758e8a17fdcf390e6bc93c1d2
---
libavformat/mov.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 4f4dcc9..f57568a 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -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,
unsigned len, const char *key)
{
+ char *value;
// Check for overflow.
if (len >= INT_MAX)
return AVERROR(EINVAL);
- char *value = av_malloc(len + 1);
+ value = av_malloc(len + 1);
if (!value)
return AVERROR(ENOMEM);
avio_read(pb, value, len);
More information about the ffmpeg-cvslog
mailing list