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
Steve Lhomme
VLC
Commits
74710712
Commit
74710712
authored
Dec 09, 2007
by
Rémi Denis-Courmont
Browse files
Fix superfluous double init
parent
c9fd5916
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/libvlc-common.c
View file @
74710712
...
...
@@ -263,8 +263,7 @@ int libvlc_InternalInit( libvlc_int_t *p_libvlc, int i_argc,
/* Get the executable name (similar to the basename command) */
if
(
i_argc
>
0
)
{
const
char
*
exe
=
ppsz_argv
[
0
];
p_libvlc
->
psz_object_name
=
exe
=
ppsz_argv
[
0
];
const
char
*
exe
=
p_libvlc
->
psz_object_name
=
ppsz_argv
[
0
];
while
(
*
exe
)
{
if
(
*
exe
++
==
'/'
)
...
...
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