mirror of
https://github.com/inspircd/inspircd.git
synced 2025-04-06 00:00:05 -04:00
Merge from trunk
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@8170 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
438bec9314
commit
ca29082480
@ -277,11 +277,17 @@ class ModuleIdent : public Module
|
|||||||
if (user->GetExt("ident_socket", isock))
|
if (user->GetExt("ident_socket", isock))
|
||||||
{
|
{
|
||||||
int *fd;
|
int *fd;
|
||||||
if (user->GetExt("ident_socket_fd", fd) && (ServerInstance->SE->GetRef(*fd) == isock))
|
if (user->GetExt("ident_socket_fd", fd))
|
||||||
|
{
|
||||||
|
if (ServerInstance->SE->GetRef(*fd) == isock)
|
||||||
|
isock->Close();
|
||||||
|
|
||||||
|
/* Check again, isock->Close() can confuse us */
|
||||||
|
if (user->GetExt("ident_socket_fd", fd))
|
||||||
{
|
{
|
||||||
user->Shrink("ident_socket_fd");
|
user->Shrink("ident_socket_fd");
|
||||||
delete fd;
|
delete fd;
|
||||||
isock->Close();
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -293,11 +299,17 @@ class ModuleIdent : public Module
|
|||||||
if (user->GetExt("ident_socket", isock))
|
if (user->GetExt("ident_socket", isock))
|
||||||
{
|
{
|
||||||
int *fd;
|
int *fd;
|
||||||
if (user->GetExt("ident_socket_fd", fd) && (ServerInstance->SE->GetRef(*fd) == isock))
|
if (user->GetExt("ident_socket_fd", fd))
|
||||||
|
{
|
||||||
|
if (ServerInstance->SE->GetRef(*fd) == isock)
|
||||||
|
isock->Close();
|
||||||
|
|
||||||
|
/* Check again, isock->Close() can confuse us */
|
||||||
|
if (user->GetExt("ident_socket_fd", fd))
|
||||||
{
|
{
|
||||||
user->Shrink("ident_socket_fd");
|
user->Shrink("ident_socket_fd");
|
||||||
delete fd;
|
delete fd;
|
||||||
isock->Close();
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user