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
25a196d7
Commit
25a196d7
authored
Jan 03, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
variable lookup: missing const
parent
12bd062b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
src/misc/variables.c
src/misc/variables.c
+4
-3
No files found.
src/misc/variables.c
View file @
25a196d7
...
...
@@ -156,7 +156,7 @@ static int GetUnused ( vlc_object_t *, const char * );
static
uint32_t
HashString
(
const
char
*
);
static
int
Insert
(
variable_t
**
,
int
,
const
char
*
);
static
int
InsertInner
(
variable_t
**
,
int
,
uint32_t
);
static
int
Lookup
(
variable_t
**
,
size_t
,
const
char
*
);
static
int
Lookup
(
variable_t
*
const
*
,
size_t
,
const
char
*
);
static
void
CheckValue
(
variable_t
*
,
vlc_value_t
*
);
...
...
@@ -1263,7 +1263,8 @@ static int u32cmp( const void *key, const void *data )
* We use a recursive inner function indexed on the hash. Care is taken of
* possible hash collisions.
*****************************************************************************/
static
int
Lookup
(
variable_t
**
pp_vars
,
size_t
i_count
,
const
char
*
psz_name
)
static
int
Lookup
(
variable_t
*
const
*
pp_vars
,
size_t
i_count
,
const
char
*
psz_name
)
{
variable_t
**
pp_var
;
uint32_t
i_hash
;
...
...
@@ -1286,7 +1287,7 @@ static int Lookup( variable_t **pp_vars, size_t i_count, const char *psz_name )
/* Hash collision should be very unlikely, but we cannot guarantee
* it will never happen. So we do an exhaustive search amongst all
* entries with the same hash. Typically, there is only one anyway. */
for
(
variable_t
**
p_end
=
pp_vars
+
i_count
;
for
(
variable_t
*
const
*
p_end
=
pp_vars
+
i_count
;
(
pp_var
<
p_end
)
&&
(
i_hash
==
(
*
pp_var
)
->
i_hash
);
pp_var
++
)
{
...
...
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