Commit af8f9bb6 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

au: fix integer overflow

Header size can reach UINT32_MAX.
parent db7e4c77
...@@ -90,7 +90,7 @@ struct demux_sys_t ...@@ -90,7 +90,7 @@ struct demux_sys_t
int i_frame_size; int i_frame_size;
mtime_t i_frame_length; mtime_t i_frame_length;
int i_header_size; uint32_t i_header_size;
}; };
static int Demux( demux_t * ); static int Demux( demux_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