mirror of
https://github.com/ton-blockchain/ton
synced 2025-03-09 15:40:10 +00:00
Bugfix
This commit is contained in:
parent
29851c38ef
commit
d324fa5820
2 changed files with 8 additions and 6 deletions
|
|
@ -24,7 +24,9 @@ namespace overlay {
|
|||
|
||||
void OverlayImpl::del_peer(adnl::AdnlNodeIdShort id) {
|
||||
auto P = peers_.get(id);
|
||||
CHECK(P != nullptr);
|
||||
if (P == nullptr) {
|
||||
return;
|
||||
}
|
||||
|
||||
VLOG(OVERLAY_DEBUG) << this << ": deleting peer " << id;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue