Skip to content
Snippets Groups Projects
Commit 45b0ccff authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont
Browse files

lock debug: fix pointer aliasing

Tree functions return pointers to void pointers.
parent e88dc936
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment