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
ce8ae4bb
Commit
ce8ae4bb
authored
Aug 10, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix variable shadowing
parent
1329ce1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/modules/modules.c
src/modules/modules.c
+6
-6
No files found.
src/modules/modules.c
View file @
ce8ae4bb
...
...
@@ -499,17 +499,17 @@ module_t * __module_need( vlc_object_t *p_this, const char *psz_capability,
/* If we required a shortcut, check this plugin provides it. */
if
(
i_shortcuts
>
0
)
{
const
char
*
psz_
name
=
psz_shortcuts
;
const
char
*
name
=
psz_shortcuts
;
for
(
unsigned
i_short
=
i_shortcuts
;
i_short
>
0
;
i_short
--
)
{
for
(
unsigned
i
=
0
;
p_module
->
pp_shortcuts
[
i
];
i
++
)
{
char
*
c
;
if
(
(
c
=
strchr
(
psz_
name
,
'@'
)
)
?
!
strncasecmp
(
psz_
name
,
p_module
->
pp_shortcuts
[
i
],
c
-
psz_
name
)
:
!
strcasecmp
(
psz_
name
,
p_module
->
pp_shortcuts
[
i
]
)
)
if
(
(
c
=
strchr
(
name
,
'@'
)
)
?
!
strncasecmp
(
name
,
p_module
->
pp_shortcuts
[
i
],
c
-
name
)
:
!
strcasecmp
(
name
,
p_module
->
pp_shortcuts
[
i
]
)
)
{
/* Found it */
if
(
c
&&
c
[
1
]
)
...
...
@@ -520,7 +520,7 @@ module_t * __module_need( vlc_object_t *p_this, const char *psz_capability,
}
/* Go to the next shortcut... This is so lame! */
psz_name
+=
strlen
(
psz_
name
)
+
1
;
name
+=
strlen
(
name
)
+
1
;
}
/* If we are in "strict" mode and we couldn't
...
...
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