Commit ea0c27c2 authored by Rémi Duraffort's avatar Rémi Duraffort

Unused variable.

parent 86e1fbd0
......@@ -2846,7 +2846,6 @@ MP4_Box_t *MP4_BoxGetRoot( stream_t *s )
if( i_result )
{
MP4_Box_t *p_child;
MP4_Box_t *p_moov;
MP4_Box_t *p_cmov;
......@@ -2868,7 +2867,7 @@ MP4_Box_t *MP4_BoxGetRoot( stream_t *s )
p_moov->p_father = p_root;
/* insert this new moov box as first child of p_root */
p_moov->p_next = p_child = p_root->p_first;
p_moov->p_next = p_root->p_first;
p_root->p_first = p_moov;
}
}
......
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