mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-07-13 02:09:27 -04:00
fix bug
This commit is contained in:
parent
01aa411498
commit
79bf6fca69
1 changed files with 2 additions and 2 deletions
|
@ -361,7 +361,7 @@ impl AddressFilter {
|
|||
Entry::Occupied(mut o) => {
|
||||
let cnt = o.get_mut();
|
||||
assert!(*cnt > 0);
|
||||
if *cnt == 0 {
|
||||
if *cnt == 1 {
|
||||
inner.conn_count_by_ip4.remove(&v4);
|
||||
} else {
|
||||
*cnt -= 1;
|
||||
|
@ -377,7 +377,7 @@ impl AddressFilter {
|
|||
Entry::Occupied(mut o) => {
|
||||
let cnt = o.get_mut();
|
||||
assert!(*cnt > 0);
|
||||
if *cnt == 0 {
|
||||
if *cnt == 1 {
|
||||
inner.conn_count_by_ip6_prefix.remove(&v6);
|
||||
} else {
|
||||
*cnt -= 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue