Skip to content

Commit cd5e361

Browse files
Carsten SchaferCarsten Schafer
authored andcommitted
Merge remote-tracking branch 'origin/master' into PKI2-208-Relaxed-security-settings-allow-rtty
2 parents ddfa597 + 11d7099 commit cd5e361

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/rttys/RTTYS_server.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -879,7 +879,9 @@ namespace OpenWifi {
879879
Connected_.erase(hint);
880880
EndPoints_.erase(id);
881881
} else {
882-
EndPoints_.erase(hint->second->Id_);
882+
auto id = hint->second->Id_;
883+
Connected_.erase(hint);
884+
EndPoints_.erase(id);
883885
}
884886
}
885887

0 commit comments

Comments
 (0)