Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
307c778c
Commit
307c778c
authored
Jul 20, 2013
by
ivoire
Browse files
Fix sizeof mismatch (cid #1049611)
parent
99f48b0e
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/bd/bd.c
View file @
307c778c
...
...
@@ -318,7 +318,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
/* Duplicate title infos */
*
pi_int
=
p_sys
->
i_title
;
*
ppp_title
=
calloc
(
p_sys
->
i_title
,
sizeof
(
input_title_t
*
*
)
);
*
ppp_title
=
calloc
(
p_sys
->
i_title
,
sizeof
(
input_title_t
*
)
);
for
(
int
i
=
0
;
i
<
p_sys
->
i_title
;
i
++
)
(
*
ppp_title
)[
i
]
=
vlc_input_title_Duplicate
(
p_sys
->
pp_title
[
i
]
);
...
...
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