Commit c3f877ed authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

mjpeg: Avoid potential read of uninitialized value.

parent defdb5a9
......@@ -173,7 +173,7 @@ static char* GetLine( demux_t *p_demux, int *p_pos )
static bool CheckMimeHeader( demux_t *p_demux, int *p_header_size )
{
bool b_jpeg = false;
int i_pos;
int i_pos = 0;
char *psz_line;
char *p_ch;
demux_sys_t *p_sys = p_demux->p_sys;
......
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