Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
9022c3a6
Commit
9022c3a6
authored
Mar 15, 2017
by
Filip Roséen
Committed by
Jean-Baptiste Kempf
Mar 15, 2017
Browse files
demux/playlist/itml: new_track: minor clean-up
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
d8a1ff99
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/demux/playlist/itml.c
View file @
9022c3a6
...
...
@@ -344,9 +344,8 @@ static bool parse_track_dict( demux_t *p_demux, input_item_node_t *p_input_node,
static
track_elem_t
*
new_track
()
{
track_elem_t
*
p_track
;
p_track
=
malloc
(
sizeof
(
track_elem_t
)
);
if
(
p_track
)
track_elem_t
*
p_track
=
malloc
(
sizeof
*
p_track
);
if
(
likely
(
p_track
)
)
{
p_track
->
name
=
NULL
;
p_track
->
artist
=
NULL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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