mirror of
https://github.com/znc/znc.git
synced 2026-08-06 08:52:57 +02:00
Identfile: don't crash when ZNC is shutting down.
Thanks to Domin for reporting this.
This commit is contained in:
@@ -99,7 +99,8 @@ public:
|
||||
}
|
||||
|
||||
void ReleaseISpoof() {
|
||||
DEBUG("Releasing ident spoof for user/network [" + m_pUser->GetUserName() + "/" + m_pNetwork->GetName() + "]");
|
||||
DEBUG("Releasing ident spoof for user/network [" + (m_pUser ? m_pUser->GetUserName() : "<no user>") + "/" +
|
||||
(m_pNetwork ? m_pNetwork->GetName() : "<no network>") + "]");
|
||||
|
||||
m_pIRCSock = NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user