Skip to content

Commit

Permalink
upstream: a little more RB_TREE paranoia
Browse files Browse the repository at this point in the history
OpenBSD-Commit-ID: 8dc2fd21eebd8830c4a4d25461ac4fe228e11156
  • Loading branch information
djmdjm committed Jun 11, 2024
1 parent fc4e96b commit ef878d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions srclimit.c
Original file line number Diff line number Diff line change
Expand Up @@ -295,14 +295,14 @@ srclimit_remove_expired_penalties(void)
while (npenalties > (size_t)penalty_cfg.max_sources) {
if ((p = RB_MIN(penalties_by_expiry,
&penalties_by_expiry)) == NULL)
break; /* shouldn't happen */
fatal_f("internal error: penalty tables corrupt (find)");
bits = p->addr.af == AF_INET ? ipv4_masklen : ipv6_masklen;
addr_masklen_ntop(&p->addr, bits, s, sizeof(s));
debug3_f("overflow, remove %s", s);
if (RB_REMOVE(penalties_by_expiry,
&penalties_by_expiry, p) != p ||
RB_REMOVE(penalties_by_addr, &penalties_by_addr, p) != p)
fatal_f("internal error: penalty tables corrupt");
fatal_f("internal error: penalty tables corrupt (remove)");
free(p);
npenalties--;
}
Expand Down

0 comments on commit ef878d5

Please sign in to comment.