From a8a90906fb0ad0f8d3c68a97f182528ee3b5198c Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sun, 31 May 2015 12:28:33 +0200 Subject: mov: Correctly allocate ctts_data It can be reallocated. CC: libav-stable@libav.org --- libavformat/mov.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/mov.c') diff --git a/libavformat/mov.c b/libavformat/mov.c index 33e1054368..fbbfef0bf3 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -2035,7 +2035,7 @@ static int mov_read_ctts(MOVContext *c, AVIOContext *pb, MOVAtom atom) return 0; if (entries >= UINT_MAX / sizeof(*sc->ctts_data)) return AVERROR_INVALIDDATA; - sc->ctts_data = av_malloc(entries * sizeof(*sc->ctts_data)); + sc->ctts_data = av_realloc(NULL, entries * sizeof(*sc->ctts_data)); if (!sc->ctts_data) return AVERROR(ENOMEM); -- cgit v1.2.3