Commit bc197352 authored by Laurent Aimar's avatar Laurent Aimar

Fixed potential use of non initialized value in corrupted nuv files.

parent ba6c81ac
......@@ -809,6 +809,10 @@ static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys )
i_kfa_elements = fh.i_length / 8;
}
else
{
i_kfa_elements = 0;
}
}
else
{
......
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