Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Gautam Chitnis
web-ui-redesign
Commits
ac92c147
Commit
ac92c147
authored
Oct 20, 2007
by
Rémi Denis-Courmont
Browse files
Remove white spaces
parent
de0b7399
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/control/mediacontrol_core.c
View file @
ac92c147
...
...
@@ -70,12 +70,12 @@ mediacontrol_Instance* mediacontrol_new( int argc, char** argv, mediacontrol_Exc
ppsz_argv
=
malloc
(
(
argc
+
2
)
*
sizeof
(
char
*
)
)
;
if
(
!
ppsz_argv
)
RAISE_NULL
(
mediacontrol_InternalException
,
"Out of memory"
);
ppsz_argv
[
0
]
=
strdup
(
"vlc"
);
for
(
i_index
=
0
;
i_index
<
argc
;
i_index
++
)
ppsz_argv
[
i_index
+
1
]
=
argv
[
i_index
];
ppsz_argv
[
argc
+
1
]
=
NULL
;
retval
->
p_instance
=
libvlc_new
(
argc
+
1
,
ppsz_argv
,
&
ex
);
retval
->
p_playlist
=
retval
->
p_instance
->
p_libvlc_int
->
p_playlist
;
HANDLE_LIBVLC_EXCEPTION_NULL
(
&
ex
);
...
...
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