Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
745dbe97
Commit
745dbe97
authored
May 30, 2009
by
JP Dinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mozilla plugin: cosmetics.
parent
8114a97f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
18 deletions
+11
-18
projects/mozilla/control/npolibvlc.cpp
projects/mozilla/control/npolibvlc.cpp
+11
-18
No files found.
projects/mozilla/control/npolibvlc.cpp
View file @
745dbe97
...
@@ -799,27 +799,20 @@ LibvlcPlaylistNPObject::invoke(int index, const NPVariant *args,
...
@@ -799,27 +799,20 @@ LibvlcPlaylistNPObject::invoke(int index, const NPVariant *args,
{
{
if
(
(
argCount
<
1
)
||
(
argCount
>
3
)
)
if
(
(
argCount
<
1
)
||
(
argCount
>
3
)
)
return
INVOKERESULT_NO_SUCH_METHOD
;
return
INVOKERESULT_NO_SUCH_METHOD
;
if
(
!
NPVARIANT_IS_STRING
(
args
[
0
])
)
char
*
url
=
NULL
;
return
INVOKERESULT_NO_SUCH_METHOD
;
// grab URL
// grab URL
if
(
NPVARIANT_IS_STRING
(
args
[
0
])
)
{
char
*
s
=
stringValue
(
NPVARIANT_TO_STRING
(
args
[
0
]));
char
*
s
=
stringValue
(
NPVARIANT_TO_STRING
(
args
[
0
]));
if
(
s
)
if
(
!
s
)
{
return
INVOKERESULT_OUT_OF_MEMORY
;
url
=
p_plugin
->
getAbsoluteURL
(
s
);
char
*
url
=
p_plugin
->
getAbsoluteURL
(
s
);
if
(
url
)
if
(
url
)
free
(
s
);
free
(
s
);
else
else
// problem with combining url, use argument
// problem with combining url, use argument
url
=
s
;
url
=
s
;
}
else
return
INVOKERESULT_OUT_OF_MEMORY
;
}
else
return
INVOKERESULT_NO_SUCH_METHOD
;
char
*
name
=
NULL
;
char
*
name
=
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