mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix a mutex lock/unlock mismatch.
This commit is contained in:
parent
2456c0ea88
commit
5f2252c2b7
1 changed files with 3 additions and 2 deletions
|
|
@ -417,9 +417,10 @@ sigev_service_loop(void *arg)
|
|||
__sigev_list_unlock();
|
||||
sn->sn_dispatch(sn, &si);
|
||||
after_dispatch(tn);
|
||||
} else
|
||||
} else {
|
||||
tn->tn_cur = NULL;
|
||||
__sigev_list_unlock();
|
||||
__sigev_list_unlock();
|
||||
}
|
||||
}
|
||||
pthread_cleanup_pop(0);
|
||||
return (0);
|
||||
|
|
|
|||
Loading…
Reference in a new issue