Skip to content
Snippets Groups Projects
Commit 355bfef0 authored by Elvin Sindrilaru's avatar Elvin Sindrilaru
Browse files

MGM: Check if XrdSecEntity is not null in Disc method - it can be for http access

parent 7ce412e0
No related branches found
No related tags found
No related merge requests found
......@@ -208,7 +208,9 @@ XrdMgmOfs::newFile(char* user, int MonID)
void
XrdMgmOfs::Disc(const XrdSecEntity* client)
{
ProcInterface::DropSubmittedCmd(client->tident);
if (client) {
ProcInterface::DropSubmittedCmd(client->tident);
}
}
//------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment