Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
a414889b
Commit
a414889b
authored
Feb 28, 2012
by
Rémi Denis-Courmont
Browse files
mp4: avoid shadowing variables
parent
fe146fbe
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/mp4/mp4.c
View file @
a414889b
...
...
@@ -441,10 +441,10 @@ static int Open( vlc_object_t * p_this )
free
(
psz_path
);
}
msg_Dbg
(
p_demux
,
"adding ref = `%s'"
,
psz_ref
);
input_item_t
*
p_i
nput
=
input_item_New
(
psz_ref
,
NULL
);
input_item_CopyOptions
(
p_current
,
p_i
nput
);
input_item_node_AppendItem
(
p_subitems
,
p_i
nput
);
vlc_gc_decref
(
p_i
nput
);
input_item_t
*
p_i
tem
=
input_item_New
(
psz_ref
,
NULL
);
input_item_CopyOptions
(
p_current
,
p_i
tem
);
input_item_node_AppendItem
(
p_subitems
,
p_i
tem
);
vlc_gc_decref
(
p_i
tem
);
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment