Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
24b456d8
Commit
24b456d8
authored
Feb 02, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mozilla: fix compilation.
parent
46761435
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
projects/mozilla/vlcplugin.cpp
projects/mozilla/vlcplugin.cpp
+4
-4
No files found.
projects/mozilla/vlcplugin.cpp
View file @
24b456d8
...
...
@@ -452,8 +452,8 @@ void VlcPlugin::set_player_window()
int
VlcPlugin
::
playlist_add
(
const
char
*
mrl
,
libvlc_exception_t
*
ex
)
{
int
item
=
-
1
;
libvlc_media_t
*
p_m
=
libvlc_media_new
(
libvlc_instance
,
mrl
,
ex
);
if
(
libvlc_exception_raised
(
ex
)
)
libvlc_media_t
*
p_m
=
libvlc_media_new
(
libvlc_instance
,
mrl
);
if
(
p_m
)
return
-
1
;
libvlc_media_list_lock
(
libvlc_media_list
);
...
...
@@ -470,9 +470,9 @@ int VlcPlugin::playlist_add( const char *mrl, libvlc_exception_t *ex )
int
VlcPlugin
::
playlist_add_extended_untrusted
(
const
char
*
mrl
,
const
char
*
name
,
int
optc
,
const
char
**
optv
,
libvlc_exception_t
*
ex
)
{
libvlc_media_t
*
p_m
=
libvlc_media_new
(
libvlc_instance
,
mrl
,
ex
);
libvlc_media_t
*
p_m
=
libvlc_media_new
(
libvlc_instance
,
mrl
);
int
item
=
-
1
;
if
(
libvlc_exception_raised
(
ex
)
)
if
(
p_m
)
return
-
1
;
for
(
int
i
=
0
;
i
<
optc
;
++
i
)
...
...
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