Module: libav Branch: release/0.8 Commit: af1f7fa642b8ec1236e39d0e715bed156a601cba
Author: Luca Barbato <[email protected]> Committer: Diego Biurrun <[email protected]> Date: Tue Mar 8 11:57:16 2016 +0100 mov: Check the entries value when parsing dref boxes And properly reset the entries count when resetting the entries. CC: [email protected] Bug-Id: 929 Bug-Id: CVE-2016-3062 (cherry picked from commit 7e01d48cfd168c3dfc663f03a3b6a98e0ecba328) Signed-off-by: Diego Biurrun <[email protected]> --- libavformat/mov.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libavformat/mov.c b/libavformat/mov.c index a1de652..4e636e7 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -387,8 +387,10 @@ static int mov_read_dref(MOVContext *c, AVIOContext *pb, MOVAtom atom) avio_rb32(pb); // version + flags entries = avio_rb32(pb); - if (entries >= UINT_MAX / sizeof(*sc->drefs)) + if (!entries || + entries >= UINT_MAX / sizeof(*sc->drefs)) return AVERROR_INVALIDDATA; + sc->drefs_count = 0; sc->drefs = av_mallocz(entries * sizeof(*sc->drefs)); if (!sc->drefs) return AVERROR(ENOMEM); _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
