Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
c3102ca4
Commit
c3102ca4
authored
Aug 04, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use module_* functions
parent
fb3ee6ab
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
modules/control/http/mvar.c
modules/control/http/mvar.c
+3
-5
No files found.
modules/control/http/mvar.c
View file @
c3102ca4
...
...
@@ -346,13 +346,11 @@ mvar_t *E_(mvar_ObjectSetNew)( intf_thread_t *p_intf, char *psz_name,
for
(
i
=
0
;
i
<
p_list
->
i_count
;
i
++
)
{
module_t
*
p_parser
=
(
module_t
*
)
p_list
->
p_values
[
i
].
p_object
;
if
(
!
strcmp
(
p_parser
->
psz_capability
,
psz_capability
)
)
if
(
module_IsCapable
(
p_parser
,
psz_capability
)
)
{
mvar_t
*
sd
=
E_
(
mvar_New
)(
"sd"
,
p_parser
->
psz_object_name
);
mvar_t
*
sd
=
E_
(
mvar_New
)(
"sd"
,
module_GetObjName
(
p_parser
)
);
E_
(
mvar_AppendNewVar
)(
sd
,
"name"
,
p_parser
->
psz_longname
?
p_parser
->
psz_longname
:
(
p_parser
->
psz_shortname
?
p_parser
->
psz_shortname
:
p_parser
->
psz_object_name
)
);
module_GetName
(
p_parser
,
VLC_TRUE
)
);
E_
(
mvar_AppendVar
)(
s
,
sd
);
}
}
...
...
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