Commit d50122ea authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Do not try to read total disc or track number if data atom is too short.

Fixes ticket #659.
parent 7cdfce4f
...@@ -87,9 +87,10 @@ static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb, ...@@ -87,9 +87,10 @@ static int mov_metadata_track_or_disc_number(MOVContext *c, AVIOContext *pb,
{ {
char buf[16]; char buf[16];
short current, total; short current, total = 0;
avio_rb16(pb); // unknown avio_rb16(pb); // unknown
current = avio_rb16(pb); current = avio_rb16(pb);
if (len >= 6)
total = avio_rb16(pb); total = avio_rb16(pb);
if (!total) if (!total)
snprintf(buf, sizeof(buf), "%d", current); snprintf(buf, sizeof(buf), "%d", current);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment