Commit 3e077c31 authored by Laurent Aimar's avatar Laurent Aimar

Fixed integer overflow in avi index creation.

It fixes #2583.
parent 8a93a226
......@@ -106,7 +106,7 @@ typedef struct
uint32_t i_flags;
off_t i_pos;
uint32_t i_length;
uint32_t i_lengthtotal;
int64_t i_lengthtotal;
} avi_entry_t;
......
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