mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
sched: Revert IF_BUG_ONCE() to tor_assert()
Signed-off-by: David Goulet <dgoulet@torproject.org>
This commit is contained in:
parent
1033e14a69
commit
513d642a66
@ -224,19 +224,12 @@ scheduler_compare_channels, (const void *c1_v, const void *c2_v))
|
||||
const circuitmux_policy_t *p1, *p2;
|
||||
uintptr_t p1_i, p2_i;
|
||||
|
||||
tor_assert(c1_v);
|
||||
tor_assert(c2_v);
|
||||
|
||||
c1 = (const channel_t *)(c1_v);
|
||||
c2 = (const channel_t *)(c2_v);
|
||||
|
||||
IF_BUG_ONCE(!c1 || !c2) {
|
||||
if (c1 && !c2) {
|
||||
return -1;
|
||||
} else if (c2 && !c1) {
|
||||
return 1;
|
||||
} else {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
if (c1 != c2) {
|
||||
if (circuitmux_get_policy(c1->cmux) ==
|
||||
circuitmux_get_policy(c2->cmux)) {
|
||||
|
Loading…
Reference in New Issue
Block a user