Commit 81187db5 authored by Laurent Aimar's avatar Laurent Aimar Committed by Rémi Duraffort

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

(cherry picked from commit bc19735206f7520b20e53c7935cb06fea9b43e4b)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 92d104ad
...@@ -809,6 +809,10 @@ static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys ) ...@@ -809,6 +809,10 @@ static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys )
i_kfa_elements = fh.i_length / 8; i_kfa_elements = fh.i_length / 8;
} }
else
{
i_kfa_elements = 0;
}
} }
else 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