Commit 7c3a382c authored by Yuval Tze's avatar Yuval Tze Committed by Jean-Baptiste Kempf

Subsdelay: fix subpic validate result value

SubpicValidateWrapper result value wasn't always initialized
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 7658d8e4
...@@ -929,7 +929,7 @@ static int SubpicValidateWrapper( subpicture_t *p_subpic, bool has_src_changed, ...@@ -929,7 +929,7 @@ static int SubpicValidateWrapper( subpicture_t *p_subpic, bool has_src_changed,
{ {
subsdelay_heap_entry_t *p_entry; subsdelay_heap_entry_t *p_entry;
mtime_t i_new_ts; mtime_t i_new_ts;
int i_result; int i_result = VLC_SUCCESS;
p_entry = p_subpic->updater.p_sys; p_entry = p_subpic->updater.p_sys;
if( !p_entry ) if( !p_entry )
......
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