Skip to content

Commit

Permalink
fix last_div invalidation order
Browse files Browse the repository at this point in the history
  • Loading branch information
as committed May 19, 2020
1 parent 34c776d commit 73f5a9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vod/subtitle/dfxp_format.c
Original file line number Diff line number Diff line change
Expand Up @@ -783,11 +783,11 @@ dfxp_parse_frames(
break;
}

cur_node = node_stack[--node_stack_pos];
if (cur_node == last_div)
{
last_div = NULL;
}
cur_node = node_stack[--node_stack_pos];
continue;
}

Expand Down

0 comments on commit 73f5a9a

Please sign in to comment.