Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
457
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
45b0ccff
Commit
45b0ccff
authored
5 years ago
by
Rémi Denis-Courmont
Browse files
Options
Downloads
Patches
Plain Diff
lock debug: fix pointer aliasing
Tree functions return pointers to void pointers.
parent
e88dc936
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/misc/threads.c
+2
-2
2 additions, 2 deletions
src/misc/threads.c
with
2 additions
and
2 deletions
src/misc/threads.c
+
2
−
2
View file @
45b0ccff
...
...
@@ -82,7 +82,7 @@ static void vlc_lock_mark(const void *lock, void **rootp)
mark
->
object
=
lock
;
mark
->
refs
=
0
;
struct
vlc_lock_mark
**
entry
=
tsearch
(
mark
,
rootp
,
vlc_lock_mark_cmp
);
void
**
entry
=
tsearch
(
mark
,
rootp
,
vlc_lock_mark_cmp
);
if
(
unlikely
(
entry
==
NULL
))
abort
();
...
...
@@ -98,7 +98,7 @@ static void vlc_lock_mark(const void *lock, void **rootp)
static
void
vlc_lock_unmark
(
const
void
*
lock
,
void
**
rootp
)
{
struct
vlc_lock_mark
*
mark
=
&
(
struct
vlc_lock_mark
){
lock
,
0
};
struct
vlc_lock_mark
**
entry
=
tfind
(
mark
,
rootp
,
vlc_lock_mark_cmp
);
void
**
entry
=
tfind
(
mark
,
rootp
,
vlc_lock_mark_cmp
);
assert
(
entry
!=
NULL
);
mark
=
*
entry
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment